/**
 * SPDX-License-Identifier: Apache-2.0
 */
import { BaseCommand, type Opts } from './../base.js';
import { ClusterCommandHandlers } from './handlers.js';
/**
 * Defines the core functionalities of 'node' command
 */
export declare class ClusterCommand extends BaseCommand {
    handlers: ClusterCommandHandlers;
    constructor(opts: Opts);
    getCommandDefinition(): {
        command: string;
        desc: string;
        builder: (yargs: any) => any;
    };
    close(): Promise<void>;
}
