export type DebouncedFunction any> = ((...args: Parameters) => void) & { flush: () => void; }; export declare const debounce: any>(func: T, wait: number, immediate?: boolean) => DebouncedFunction; //# sourceMappingURL=utils.d.ts.map