import { ParameterObject } from '../../../types'; import { LocationParam } from '../LocationParam'; import { Sampler } from '../../Sampler'; import { SubConverter } from '../../SubConverter'; import { OpenAPI } from '@har-sdk/core'; export declare abstract class PathConverter implements SubConverter { private readonly spec; private readonly sampler; protected constructor(spec: OpenAPI.Document, sampler: Sampler); protected abstract parsePath(path: string, params: LocationParam[]): string; convert(path: string, method: string): string; }