import { type Options } from '../../request/options.js';
import { type KindExecutionBuilder } from '../../execution/kind-execution-builder.js';
/**
 * Options for the `kind get nodes` command.
 */
export declare class GetNodesOptions implements Options {
    /**
     * The name of the cluster context name (default "kind")
     */
    private readonly _name;
    /**
     * If present, list all the available nodes across all cluster contexts.
     * Current context is ignored even if specified with --name.
     */
    private readonly _allClusters;
    constructor(name?: string, allClusters?: boolean);
    /**
     * Apply the options to the KindExecutionBuilder.
     * @param builder The KindExecutionBuilder to apply options to.
     */
    apply(builder: KindExecutionBuilder): void;
    /**
     * The name of the cluster.
     */
    get name(): string;
    /**
     * Whether to list all nodes across all cluster contexts.
     */
    get allClusters(): boolean;
}
