export declare const deepEquals: (x: any, y: any) => boolean; export declare const throttle: (func: any, limit?: number) => () => void; export declare const debounce: (func: any, wait: any, immediate?: boolean) => () => void; export declare const isFunction: (value: any) => boolean;