import type { FN, ThrottleOptions, Throttled } from './types.js'; declare const throttle: (fn: FN, wait?: number, options?: ThrottleOptions) => Throttled; export default throttle;