/** * Creates a throttled function that only executes 'fn' at most once per every 'wait' milliseconds. */ export default function createThrottler(fn: (...args: Args) => unknown, wait?: number): (...args: Args) => void;