interface VersionsServiceAttrs { cmd: any; environment: any; dotenvMe: any; yes: any; } declare class VersionsService { cmd: any; environment: any; dotenvMe: any; yes: any; log: any; abort: any; login: any; constructor(attrs?: VersionsServiceAttrs); run(): Promise; versions(): Promise; get url(): string; get smartEnvironment(): any; get meUid(): any; } export { VersionsService };