import type { AnyFunction } from './types';
export default function useThrottle(wait?: number, leading?: boolean, trailing?: boolean): (newFunction: AnyFunction, scope?: AnyFunction, args?: Array<any>) => void;
