import { V230DevfileStarterProjectsItemsGit } from '../models/V230DevfileStarterProjectsItemsGit'; import { V230DevfileStarterProjectsItemsZip } from '../models/V230DevfileStarterProjectsItemsZip'; export declare class V230DevfileStarterProjects { 'attributes'?: any; 'description'?: string; 'git'?: V230DevfileStarterProjectsItemsGit; 'name': string; 'subDir'?: string; 'zip'?: V230DevfileStarterProjectsItemsZip; 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(); }