export declare const debounce: (func: any, delay: number, options?: {
    leading?: boolean;
    trailing?: boolean;
}) => (...args: any[]) => void;
