import { Sampler } from '../Sampler'; import { OpenAPI } from '@har-sdk/core'; export declare class BaseUrlParser { private readonly sampler; private readonly uriTemplator; constructor(sampler: Sampler); parse(spec: OpenAPI.Document): string; normalizeUrl(url: string, context?: { jsonPointer: string; }): string; private parseUrls; private ensureUrlsValidness; private parseHost; private parseServers; }