import { type Dispatch, type SetStateAction } from 'react'; export declare function useDebouncedState(initialState: S | (() => S), delay: number, maxWait?: number): [S, Dispatch>];