export function execute(...operations: any[]): (state: any) => any; export function steps(...operations: any[]): any; /** * @typedef {Object} State * @property {object} data JSON Data. * @property {Array} references History of all previous operations. * @ignore */ /** * @typedef {Function} Operation * @param {State} state * @ignore */ export const createSMS: any; export const updateSMS: any; export const reference: any; export type State = { /** * JSON Data. */ data: object; /** * History of all previous operations. */ references: Array; }; export type Operation = Function; export { lookup, relationship } from "./sourceHelpers.js"; export { alterState, arrayToString, beta, combine, dataPath, dataValue, each, field, fields, fn, fnIf, index, join, lastReferenceValue, log, merge, referencePath, source, sourceValue, toArray } from "@openfn/language-common";