import { ContentType } from '../util';
import { OpenAPIV3, BodySchema } from '../../framework/types';
export declare class BodySchemaParser {
    constructor();
    parse(path: string, pathSchema: OpenAPIV3.OperationObject, contentType: ContentType): BodySchema;
    private toSchema;
}
