import { ApiResponseSchemaHost } from '../decorators'; export declare class ResponseObjectMapper { private readonly mimetypeContentWrapper; toArrayRefObject(response: Record, name: string, produces: string[]): { content: Record; }; toRefObject(response: Record, name: string, produces: string[]): { content: Record; }; wrapSchemaWithContent(response: ApiResponseSchemaHost, produces: string[]): ApiResponseSchemaHost | { content: Record; description?: string; headers?: Record; links?: Record; status?: number; }; }