import * as React from 'react'; export declare const useDebounceCallback: (callback: (...args: CallbackArgs) => void, wait?: number, leading?: boolean) => ((...args: CallbackArgs) => void); export declare const useDebounce: (initialState: State | (() => State), wait?: number, leading?: boolean) => [State, React.Dispatch>];