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