/** * Given an async function, this function will throttle the response time if errored to prevent timing attacks */ export declare const throttledReject: (func: () => Promise, throttle?: number, shouldThrottle?: (res: T) => boolean) => Promise; export declare const throttledAuthCall: (func: () => Promise, throttle?: number) => Promise; //# sourceMappingURL=throttledReject.d.ts.map