import { V230DevfileParentComponentsItemsContainer } from '../models/V230DevfileParentComponentsItemsContainer'; import { V230DevfileParentComponentsItemsImage } from '../models/V230DevfileParentComponentsItemsImage'; import { V230DevfileParentComponentsItemsKubernetes } from '../models/V230DevfileParentComponentsItemsKubernetes'; import { V230DevfileParentComponentsItemsOpenshift } from '../models/V230DevfileParentComponentsItemsOpenshift'; import { V230DevfileParentComponentsItemsVolume } from '../models/V230DevfileParentComponentsItemsVolume'; export declare class V230DevfileParentComponents { 'attributes'?: any; 'container'?: V230DevfileParentComponentsItemsContainer; 'image'?: V230DevfileParentComponentsItemsImage; 'kubernetes'?: V230DevfileParentComponentsItemsKubernetes; 'name': string; 'openshift'?: V230DevfileParentComponentsItemsOpenshift; 'volume'?: V230DevfileParentComponentsItemsVolume; static readonly discriminator: string | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); }