type Callback = (...args: T) => void; export declare function useDebounce(callback: Callback, wait: number): (...args: Param) => void; export {};