import { type ViewStyle, type NativeSyntheticEvent, type ViewProps } from 'react-native';
type OnFocusEvent = NativeSyntheticEvent<{
    focused: boolean;
}>;
type OnBlurEvent = NativeSyntheticEvent<{
    blurred: boolean;
}>;
type OnTextChangeEvent = NativeSyntheticEvent<{
    text: string;
}>;
type TvosKeyboardProps = ViewProps & {
    onTextChange?: (event: OnTextChangeEvent) => void;
    onFocus?: (event: OnFocusEvent) => void;
    onBlur?: (event: OnBlurEvent) => void;
    style?: ViewStyle;
};
export declare const TvosKeyboardView: (props: TvosKeyboardProps) => import("react/jsx-runtime").JSX.Element | null;
export {};
//# sourceMappingURL=index.d.ts.map