import { ApiResponseSchemaHost } from '../decorators'; export declare class ResponseObjectMapper { private readonly mimetypeContentWrapper; toArrayRefObject(response: Record, name: string, produces: string[]): { content: import("../interfaces/open-api-spec.interface").ContentObject; }; toRefObject(response: Record, name: string, produces: string[]): { content: import("../interfaces/open-api-spec.interface").ContentObject; }; wrapSchemaWithContent(response: ApiResponseSchemaHost, produces: string[]): ApiResponseSchemaHost | { content: import("../interfaces/open-api-spec.interface").ContentObject; description?: string; headers?: import("../interfaces/open-api-spec.interface").HeadersObject; links?: import("../interfaces/open-api-spec.interface").LinksObject; status?: number; }; }