import { KeyboardEventEasing } from 'react-native';
import { KEYBOARD_STATE } from '../constants';
export declare const useKeyboard: () => {
    state: {
        value: KEYBOARD_STATE;
    };
    height: {
        value: number;
    };
    animationEasing: {
        value: KeyboardEventEasing;
    };
    animationDuration: {
        value: number;
    };
    shouldHandleKeyboardEvents: {
        value: boolean;
    };
};
