/** * A version of lodash/debounce that always returns a promise but wait for the debounced function to return to resolve it. * @param func The function to debounce * @param wait The debounce delay * @returns A debounced function that returns a promise */ export declare function asyncDebounce Promise>(func: FunctionType, wait?: number): (...args: Parameters) => ReturnType; //# sourceMappingURL=asyncDebounce.d.ts.map