import { type Clusters } from '../../../resources/cluster/clusters.js';
import { type KubeConfig } from '@kubernetes/client-node';
export declare class K8ClientClusters implements Clusters {
    private readonly kubeConfig;
    constructor(kubeConfig: KubeConfig);
    list(): string[];
    readCurrent(): string;
}
