export declare function debounce<T extends (...args: any[]) => void>(func: T, delay: number): T & {
    cancel: () => void;
};
