interface ThrottledFunc unknown> { (...args: Parameters): void; } export declare const throttle: unknown>(callback: T, wait?: number, leading?: boolean) => ThrottledFunc; export {};