import * as Soap from "@soapjs/soap"; import { AuthThrottleConfig } from "../types"; export declare class AuthThrottleService { private config; private logger?; constructor(config: AuthThrottleConfig, logger?: Soap.Logger); checkFailedAttempts(identifier: string): Promise; incrementFailedAttempts(account: any): Promise; resetFailedAttempts(account: any): Promise; }