import React from "react"; import { variablesModel } from "../CodeEditor/interface"; interface IActionVariableProps { variableList?: variablesModel[]; isParentSelect?: boolean; callback?: (varData: any, type: string) => void; } declare function ActionVariable(props: IActionVariableProps): React.JSX.Element; export default ActionVariable;