export declare class ClusterDeleteResponse {
    protected readonly _rawOutput: string;
    private readonly _name;
    private readonly _deletedNodes;
    constructor(_rawOutput: string);
    get name(): string | undefined;
    get deletedNodes(): string[];
}
