import { z } from 'zod';
import { Content } from './Content';
export declare const ResponseValidationSchema: any;
export type Response = {
    content?: Content;
    description?: string;
};
export declare const ResponsesValidationSchema: z.ZodRecord<z.ZodString, any>;
export type Responses = Record<string, Response>;
