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