export declare function omit = Record, P extends string = ''>(obj?: T, fields?: P[]): Omit; export declare function throttle(fn: any, threshold?: number, scope?: any): (...args: any[]) => void; export declare function debounce(fn: any, ms?: number, scope?: any): (...args: any[]) => void;