export declare const debounce: <F extends (...args: any) => unknown>(func: F, wait: number) => F & {
    cancel: () => void;
};
