interface useThrottleStateTypes {
    state: any;
    options: {
        wait: number;
    };
}
declare function useThrottleState(props: useThrottleStateTypes): any;
declare namespace useThrottleState {
    var defaultProps: {
        state: null;
        options: {
            wait: number;
        };
    };
}
export default useThrottleState;
