import { AtlexError } from '@atlex/core'; /** * Thrown when login throttling rejects further attempts. */ export declare class LockoutError extends AtlexError { /** * Suggested HTTP status for HTTP adapters. */ readonly status = 429; /** * Seconds until the client should retry. */ readonly retryAfter: number; /** * @param retryAfter - Retry-After value in seconds. */ constructor(retryAfter: number); } //# sourceMappingURL=LockoutError.d.ts.map