declare const EVENT_TYPE: { readonly didShow: { readonly show: "keyboardDidShow"; readonly hide: "keyboardDidHide"; }; readonly willShow: { readonly show: "keyboardWillShow"; readonly hide: "keyboardWillHide"; }; }; export declare function useNKeyboard({ eventType }?: { eventType?: keyof typeof EVENT_TYPE; }): { isKeyboardVisible: boolean; keyboardHeight: number; dismissKeyboard: () => void; }; export {}; //# sourceMappingURL=useNKeyboard.d.ts.map