/** * Debounce function to limit the rate at which a function is called */ export declare function debounce any>(func: T, wait: number): (...args: Parameters) => void; //# sourceMappingURL=debounce.d.ts.map