import _ from 'underscore'; export declare const debounce: (time: number, immediate?: boolean) => { (target: any, key: string | number | symbol, descriptor: PropertyDescriptor): any; (value: any, context: any): any; }; export declare const throttle: (time: number, options?: _.ThrottleSettings) => { (target: any, key: string | number | symbol, descriptor: PropertyDescriptor): any; (value: any, context: any): any; };