export interface ClusterInfo { type: 'minikube' | 'kind' | 'k3s' | 'docker-desktop' | 'cloud' | 'unknown'; ip?: string; context?: string; namespace?: string; error?: string; } export declare function detectClusterType(): Promise; export declare function getClusterInfo(context?: string): Promise;