import { Encoding } from './Encoding'; import { Example } from './Example'; import { Reference } from './Reference'; import { Schema } from './Schema'; export interface MediaType { schema?: Schema; example?: any; examples?: { [key: string]: Example | ReferenceType; }; encoding?: { [key: string]: Encoding; }; [key: `x-${string}`]: any; }