import { V230DevfileComponentsItemsContainerAnnotation } from '../models/V230DevfileComponentsItemsContainerAnnotation'; import { V230DevfileComponentsItemsContainerEndpoints } from '../models/V230DevfileComponentsItemsContainerEndpoints'; import { V230DevfileComponentsItemsContainerEnv } from '../models/V230DevfileComponentsItemsContainerEnv'; import { V230DevfileComponentsItemsContainerVolumeMounts } from '../models/V230DevfileComponentsItemsContainerVolumeMounts'; export declare class V230DevfileComponentsItemsContainer { 'annotation'?: V230DevfileComponentsItemsContainerAnnotation; 'args'?: Array; 'command'?: Array; 'cpuLimit'?: string; 'cpuRequest'?: string; 'dedicatedPod'?: boolean; 'endpoints'?: Array; 'env'?: Array; 'image': string; 'memoryLimit'?: string; 'memoryRequest'?: string; 'mountSources'?: boolean; 'sourceMapping'?: string; 'volumeMounts'?: Array; 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(); }