import { TMethod } from './models';
interface IThrottleMethod {
    (...args: any[]): any;
}
declare const throttle: (method: TMethod, interval?: number) => IThrottleMethod;
export default throttle;
