import { Header } from './Header'; import { Link } from './Link'; import { MediaType } from './MediaType'; import { Reference } from './Reference'; export interface Response { description: string; headers?: { [key: string]: Header | ReferenceType; }; content?: { [key: string]: MediaType; }; links?: { [key: string]: Link | ReferenceType; }; [key: `x-${string}`]: any; }