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; keys(): Promise; get url(): string; get meUid(): any; } export { KeysService };