/// /** * @see {@link https://malkiii.github.io/react-pre-hooks/docs/hooks/useDebouncedState | useDebouncedState} hook. */ export declare const useDebouncedState: (args: { initial: T; delay: number; }) => readonly [T, import("react").Dispatch>, T];