export interface IMinikubeProfile { Name: string; Status: 'Running' | 'Stopped'; } export interface IMinikubeProfiles { valid: IMinikubeProfile[]; }