export declare function useDebouncedCallback<A extends any[]>(callback: (...args: A) => void, wait: number): (...args: A) => void;
