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