import { V230DevfileParentCommands } from '../models/V230DevfileParentCommands'; import { V230DevfileParentComponents } from '../models/V230DevfileParentComponents'; import { V230DevfileParentDependentProjects } from '../models/V230DevfileParentDependentProjects'; import { V230DevfileParentKubernetes } from '../models/V230DevfileParentKubernetes'; import { V230DevfileParentProjects } from '../models/V230DevfileParentProjects'; import { V230DevfileParentStarterProjects } from '../models/V230DevfileParentStarterProjects'; export declare class V230DevfileParent { 'attributes'?: any; 'commands'?: Array; 'components'?: Array; 'dependentProjects'?: Array; 'id'?: string; 'kubernetes'?: V230DevfileParentKubernetes; 'projects'?: Array; 'registryUrl'?: string; 'starterProjects'?: Array; 'uri'?: string; 'variables'?: { [key: string]: string; }; 'version'?: string; 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(); }