import { HookCreator } from"./";
/**
* A shortcut for using useDebounce with a string.
*
* @param time The time to wait.
* @param text The text.
*/declarefunctionuseDebouncedText(time: number,
text: string): HookCreator<string>;
export = useDebouncedText;