import type { ModelCatalog, CatalogModel } from "../../models/types"; import type { ModelList, Model } from "./schema"; export declare function toModel(id: string, catalogModel: CatalogModel): Model; export declare function toModels(models: ModelCatalog): ModelList; export declare function createModelsResponse(models: ModelCatalog, responseInit?: ResponseInit): Response; export declare function createModelResponse(id: string, catalogModel: CatalogModel, responseInit?: ResponseInit): Response;