import { TStepperStep, TStepAction } from './defs.js'; import { TStepValue } from '../schema/protocol.js'; export declare const TYPE_QUOTED = "q_"; export declare const TYPE_ENV = "e_"; export declare const TYPE_VAR = "b_"; export declare const TYPE_ENV_OR_VAR_OR_LITERAL = "t_"; export declare const namedInterpolation: (inp: string) => { regexPattern: string; stepValuesMap?: Record; }; export declare const matchGwtaToAction: (gwta: string, actionable: string, actionName: string, stepperName: string, step: TStepperStep) => TStepAction; export declare function getNamedMatches(regexp: RegExp, what: string): { [key: string]: string; }; export declare const getMatch: (actionable: string, r: RegExp, actionName: string, stepperName: string, step: TStepperStep, stepValuesMap?: Record) => TStepAction; export declare function mapInputToStepValues(input: Record, gwta: string): { [x: string]: TStepValue; }; //# sourceMappingURL=namedVars.d.ts.map