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