import { Postman } from '@har-sdk/core'; export declare class LexicalScope { readonly jsonPointer: string; private readonly variables; constructor(jsonPointer: string, variables?: Postman.Variable[]); combine(scopeOrVariables: LexicalScope | Postman.Variable[]): this; concat(relativePath: string, variables: Postman.Variable[]): LexicalScope; find(predicate: (value: Postman.Variable, index: number, obj: Postman.Variable[]) => unknown, thisArg?: unknown): Postman.Variable | undefined; [Symbol.iterator](): IterableIterator; }