import { BreachAccountResponse } from "../models/response/breachAccountResponse"; export abstract class AuditService { passwordLeaked: (password: string) => Promise; breachedAccounts: (username: string) => Promise; }