import type { ResponseObject } from 'openapi3-ts/oas30'; import type { ZodSchema } from './types.js'; /** * Create JSON content configuration for OpenAPI */ export declare function jsonContent(schema: T, description: string): { content: { 'application/json': { schema: T; }; }; description: string; }; /** * Create required JSON content configuration for OpenAPI */ export declare function jsonContentRequired(schema: T, description: string): { required: boolean; content: { 'application/json': { schema: T; }; }; description: string; }; /** * Create JSON content with oneOf schema for OpenAPI */ export declare function jsonContentOneOf(schemas: T[], description: string): ResponseObject; //# sourceMappingURL=content.d.ts.map