import { ProjectFileService } from './projectfileservice'; export declare const SUPPORTED_DOWNLOADS = "catalog,components,allItems,materials,textures,allTags,catalogElementAdditionalInfos"; export declare function isSupportedDownload(download: string): boolean; export declare class CatalogResponse { catalogId: string; success: boolean; catalog?: any; components?: any; allItems?: any; materials?: any; textures?: any; allTags?: any; private constructor(); static createAndDownload(catalogId: string, whatToDownload: string | undefined, projectfileservice: ProjectFileService | undefined, silent?: boolean): Promise; static readFromLocal(catalogId: string, projectfileservice: ProjectFileService | undefined, silent?: boolean): CatalogResponse; }