import { V230DevfileProjectsItemsGit } from '../models/V230DevfileProjectsItemsGit'; import { V230DevfileProjectsItemsZip } from '../models/V230DevfileProjectsItemsZip'; export declare class V230DevfileProjects { 'attributes'?: any; 'clonePath'?: string; 'git'?: V230DevfileProjectsItemsGit; 'name': string; 'zip'?: V230DevfileProjectsItemsZip; 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(); }