import { type KindKubeConfigUser } from './kind-kubeconfig-user.js';
import { type KindKubeConfigCluster } from './kind-kubeconfig-custer.js';
import { type KindKubeConfigContext } from './kind-kubeconfig-context.js';
export declare class KindKubeConfig {
    readonly apiVersion: string;
    readonly clusters: KindKubeConfigCluster[];
    readonly contexts: KindKubeConfigContext[];
    readonly currenctContext: string;
    readonly kind: string;
    readonly preferences: any;
    readonly users: KindKubeConfigUser[];
    constructor(apiVersion: string, clusters: KindKubeConfigCluster[], contexts: KindKubeConfigContext[], currenctContext: string, kind: string, preferences: any, users: KindKubeConfigUser[]);
}
