import type { ZodSchema } from "./types.ts"; declare const jsonContentRequired: (schema: T, description: string) => { required: boolean; content: { "application/json": { schema: T; }; }; description: string; }; export = jsonContentRequired;