import type { DebounceSettings, DebouncedFunc as DebouncedFuncOrigin } from 'lodash'; export interface DebouncedFunc extends DebouncedFuncOrigin { isPending: boolean; } export declare function debounce(fn: T, wait?: number, options?: DebounceSettings): DebouncedFunc;