import { BaseCommand } from '../../../base-command.js';
export default class Auth extends BaseCommand {
    static args: {
        password: import("@oclif/core/interfaces").Arg<string | undefined, Record<string, unknown>>;
        username: import("@oclif/core/interfaces").Arg<string | undefined, Record<string, unknown>>;
    };
    static description: string;
    static flags: {
        role: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
        update: import("@oclif/core/interfaces").BooleanFlag<boolean>;
    };
    run(): Promise<void>;
}
