/** * Throttles the input promise for a given amount of miliseconds */ declare const throttle: (ms: number, promise: Promise) => Promise<{}>; export default throttle;