You can just cast it, adding suppress warnings if you like:
@SuppressWarnings("unchecked")
AsyncCallback callback = Mockito.any(AsyncCallback.class)
If Java allowed 'generic' generics they could have a method like this which is what you are looking for
private static T mock(Class> clazz)