/** Hook to debounce a state. Returns normal value and setter and a third, debounced output */ export declare function useDebouncedState(initialValue: T, delay: number): [T, (value: T) => void, T];