import CommandBase from '../command.base.js';
export default class LoginRu extends CommandBase<typeof LoginRu> {
    static aliases: string[];
    static description: string;
    static usage: string;
    static examples: string[];
    static flags: {
        token: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
        force: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>;
    };
    run(): Promise<void>;
}
