/** * Creates a debounced function that delays invoking func until after wait milliseconds * have elapsed since the last time the debounced function was invoked. * @param func - The function to debounce * @param wait - The number of milliseconds to delay * @returns The debounced function */ export declare function debounce any>(func: T, wait: number): (...args: Parameters) => void; //# sourceMappingURL=debounce.d.ts.map