export declare function useDebouncedCallback any>(callback: T, options: number | { delay: number; flushOnUnmount?: boolean; }): ((...args: Parameters) => void) & { flush: () => void; };