export declare function throttle<T>(fn: (args?: T) => void, interval: number): (args: T) => void;
/** 示例
 *
    let test = throttle((text: string) => {
      console.log(text);
    }, 500);

    test('A');
    test('B');
 */ 
