import type { HostComponent, ViewProps } from 'react-native';
import type { DirectEventHandler, Int32 } from 'react-native/Libraries/Types/CodegenTypes';
export type FocusChange = Readonly<{
    isFocused: boolean;
}>;
export type OnTextFocusChange = DirectEventHandler<FocusChange>;
export interface A11yTextInputWrapperNativeComponent extends ViewProps {
    onFocusChange?: OnTextFocusChange;
    focusType?: Int32;
    blurType?: Int32;
    canBeFocused?: boolean;
}
declare const _default: HostComponent<A11yTextInputWrapperNativeComponent>;
export default _default;
//# sourceMappingURL=A11yTextInputWrapperNativeComponent.d.ts.map