declare const _default: { extractVariablesFromInput: (input: string, actionTypeVariables: any) => string[]; getSystemnameWithoutIndex: (input: string) => string; getVariableObject: (systemname: string, actionTypeVariables: any) => unknown; isReusable: (obj: any) => boolean; processVariable: ({ input, actionValue, nodeValue, actionTypeVariables }: { input: string; actionValue: string; nodeValue: string; actionTypeVariables: any; }) => Promise<{ parsedSystemValue: string; parsedNodeValue: string; }>; processIndexedVariable: ({ variableObj, input, variableIndex, actionValue, nodeValue, }: { variableObj: any; input: string; variableIndex: number; actionValue: string; nodeValue: string; }) => Promise<{ parsedSystemValue: string; parsedNodeValue: string; }>; getUsedVariableObject: (value: string) => any; getVariableIndexFromSystemname: (variable: string) => number; generateVariableValue: (variableObj: any) => Promise; isValueAlreadyGenerated: (systemname: string, value: string) => any; }; export default _default;