import { Node } from "../classes"; import { Context } from "../types"; declare function createUpdateAndParams({ updateInput, varName, node, parentVar, chainStr, insideDoWhen, withVars, context, parameterPrefix, }: { parentVar: string; updateInput: any; varName: string; chainStr?: string; node: Node; withVars: string[]; insideDoWhen?: boolean; context: Context; parameterPrefix: string; }): [string, any]; export default createUpdateAndParams; //# sourceMappingURL=create-update-and-params.d.ts.map