import { VariableParser } from './VariableParser'; import { Generators } from './generators'; import { LexicalScope } from './LexicalScope'; import { Postman } from '@har-sdk/core'; export declare abstract class BaseVariableParser implements VariableParser { private readonly generators; private readonly REGEX_DYNAMIC_VARIABLE; protected constructor(generators: Generators); abstract parse(value: string, scope: LexicalScope): string; find(key: string, scope: LexicalScope): Postman.Variable | undefined; protected sample(variable: Postman.Variable): string; }