import { BaseCommand, type Opts } from './base.js';
import { ClusterCommandTasks } from './cluster/tasks.js';
import { type CommandBuilder } from '../types/aliases.js';
export declare class DeploymentCommand extends BaseCommand {
    readonly tasks: ClusterCommandTasks;
    constructor(opts: Opts);
    private static get DEPLOY_FLAGS_LIST();
    private static get LIST_DEPLOYMENTS_FLAGS_LIST();
    create(argv: any): Promise<boolean>;
    private list;
    getCommandDefinition(): {
        command: string;
        desc: string;
        builder: CommandBuilder;
    };
    close(): Promise<void>;
}
