export default class PasswordGenerator {
    exec(userName: string): Promise<{
        username: string;
        password: any;
    }>;
}
