import { SubConverter } from '../SubConverter'; import { SubPart } from '../SubPart'; import { Sampler } from '../Sampler'; import { ConverterOptions } from '../Converter'; import { OpenAPI } from '@har-sdk/core'; export declare class SubConverterFactory { private readonly sampler; private readonly options; constructor(sampler: Sampler, options: ConverterOptions); createSubConverter(spec: OpenAPI.Document, type: SubPart): SubConverter; private throwIfParamIsNoSupported; private instantiate; }