import { IVariable } from '../constants';
import { IKeyValues } from '../../../models/base';
export declare type TValue = string | string[] | IVariable;
export declare function calcVariableMap(variables: IVariable[]): IKeyValues<TValue>;
export declare function replaceVariable(target: string, valueMap: IKeyValues<TValue>): string;
