export default function debounce(func: Function, wait?: number): {
    (this: any, ...args: any[]): void;
    clear(): void;
};
