import type { Dictionary } from '../../../utils/types'; import type { OpenApi } from '../interfaces/OpenApi'; import type { OpenApiMediaType } from '../interfaces/OpenApiMediaType'; import type { OpenApiSchema } from '../interfaces/OpenApiSchema'; export interface Content { mediaType: string; schema: OpenApiSchema; } export declare const getContent: (openApi: OpenApi, content: Dictionary) => Content | null;