interface KeysServiceAttrs {
    cmd: any;
    environment: any;
    dotenvMe: any;
    yes: any;
}
declare class KeysService {
    cmd: any;
    environment: any;
    dotenvMe: any;
    yes: any;
    log: any;
    abort: any;
    login: any;
    constructor(attrs?: KeysServiceAttrs);
    run(): Promise<void>;
    keys(): Promise<void>;
    get url(): string;
    get meUid(): any;
}
export { KeysService };
