import { BodyConverter } from './BodyConverter'; import type { Sampler } from '../../Sampler'; import { OpenAPIV3, PostData } from '@har-sdk/core'; export declare class Oas3RequestBodyConverter extends BodyConverter { constructor(spec: OpenAPIV3.Document, sampler: Sampler); convert(path: string, method: string): PostData | null; protected getContentType(path: string, method: string): string | undefined; private sampleAndEncodeRequestBody; private encodeProperties; private sampleRequestBody; private getExample; private findObject; private inferSchemaType; }