import type { IdMapper, ImportExtension, RefHandling, SchemaMetaDataMap } from '../types.js'; /** * Generate the file content of all expected JSON Schema files */ export declare function makeSchemaFileContents({ schemaMetaDataMap, refHandling, idMapper, importExtension, }: { schemaMetaDataMap: SchemaMetaDataMap; refHandling: RefHandling; idMapper: IdMapper; importExtension: ImportExtension; }): Promise;