declare type Time = number; export declare const throttle: (fn: any, delay: Time, context: any) => () => void; export {};