export declare const debounce: (func: Function, wait?: number) => {
    (this: unknown, ...args: unknown[]): void;
    clear(): void;
};
