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