export declare type TMapKeyboardFocused = { isKeyboardFocused?: boolean; onFocus?: () => void; onBlur?: () => void; onPressIn?: () => void; onPressOut?: () => void; }; export declare const mapKeyboardFocused:
(props: P) => P & Required;