/** * useDebouncedState Hook allows to defer a state update by a timelapse, to rate limit state updates */ export declare const useDebouncedState: (initialValue: any, delay?: number) => any[]; export default useDebouncedState;