import type { Driver } from "../types.js"; import type { AuthAttackOptions, AuthFinding } from "./types.js"; export interface AuthAttackDriver extends Driver { /** All findings emitted across the driver's lifetime. */ getFindings(): AuthFinding[]; } export declare function authAttackDriver(opts?: AuthAttackOptions): AuthAttackDriver; //# sourceMappingURL=driver.d.ts.map