import { SetStateAction } from 'react'; export declare function useDebouncedState(defaultValue: T, wait: number, options?: { leading: boolean; }): readonly [T, (newValue: SetStateAction) => void];