import { Command } from '@oclif/core';
export default class AuthCommand extends Command {
    static description: string;
    static args: {
        'deploy-key': import("@oclif/core/interfaces").Arg<string | undefined, Record<string, unknown>>;
    };
    static flags: {
        help: import("@oclif/core/interfaces").BooleanFlag<void>;
    };
    private validateStudioDeployKey;
    run(): Promise<void>;
}
