import { BaseVariableParser } from './BaseVariableParser'; import { Generators } from './generators'; import { LexicalScope } from './LexicalScope'; export declare class EnvVariableParser extends BaseVariableParser { private readonly REGEX_EXTRACT_VARS; private readonly VARS_SUBSTITUTIONS_LIMIT; constructor(generators: Generators); parse(value: string, scope: LexicalScope): string; private replace; }