/** * Creates a debounced function that delays invoking func until after wait milliseconds * have elapsed since the last time the debounced function was invoked. * Similar to lodash debounce. */ export declare function debounce any>(func: T, wait: number): T & { cancel: () => void; flush: () => ReturnType | undefined; }; //# sourceMappingURL=debounce.d.ts.map