import { BaseEntity } from '../../store/entity/entity.model'; export declare class KubernetesResource implements BaseEntity { id: string; name: string; version: string; namespace: string; description: string; icon: string; labels: Map; annotations: Map; resource: any; creationTimestamp: any; openShiftConsoleUrl: string; setResource(resource: any): this; updateResource(resource: any): void; updateValuesFromResource(): void; defaultIconUrl(): string; defaultKind(): string; }