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