import { PasswordHistory } from '../models/domain/passwordHistory'; export abstract class PasswordGenerationService { generatePassword: (options: any) => Promise; getOptions: () => any; saveOptions: (options: any) => Promise; getHistory: () => Promise; addHistory: (password: string) => Promise; clear: () => Promise; }