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<void>;
    versions(): Promise<void>;
    get url(): string;
    get smartEnvironment(): any;
    get meUid(): any;
}
export { VersionsService };
