import { JsonSchemaDocument } from '../parser'; /** * Process JSON Schema document for models generation * Since the models generator works directly with the raw document, * we simply return the document as-is after validation. */ export declare function processJsonSchemaModels(jsonSchemaDocument: JsonSchemaDocument): JsonSchemaDocument;