import { KindKubeConfig } from './kubeconfig/kind-kubeconfig.js';
/**
 * Represents a parsed kubeconfig response from Kind
 */
export declare class GetKubeConfigResponse {
    protected readonly _rawOutput: string;
    private readonly _config;
    constructor();
    /**
     * Gets the raw kubeconfig content
     */
    get rawOutput(): string;
    /**
     * Gets the full parsed config object
     */
    get config(): KindKubeConfig;
}
