import type { OpenApiSchema, OpenApiObjectSchemaProperty } from '../openapi-types'; /** * Serialize a schema. * @param schema - Parsed schema to be serialized. * @returns The serialized schema * @internal */ export declare function serializeSchema(schema: OpenApiSchema): string; /** * @internal */ export declare function schemaPropertyDocumentation(schema: OpenApiObjectSchemaProperty): string;