/** * Returns a method that wraps the original one with an async debounce * @param method The method that should be debounced * @param debounceMs The timeout in millisecs */ export declare const debounce: (method: (...args: TArgs) => TReturns, debounceMs?: number) => (...args: TArgs) => TReturns; //# sourceMappingURL=debounce.d.ts.map