/**
* Execute a sequence of operations.
* Wraps `@openfn/language-common/execute`, and prepends initial state for telerivet.
* @private
* @param {Operations} operations - Operations to be performed.
* @returns {Operation}
*/
export function execute(...operations: Operations): Operation;
/**
* Send a message
* @example
Send a message
* send({
* to_number: "+1234567890",
* content: "Hello from Telerivet",
* route_id: "PN123",
* });
* @function
* @param {object} sendData - Payload data for the message
* @returns {Operation}
*/
export function send(sendData: object): Operation;
export { fn, fnIf, alterState, field, fields, sourceValue, merge, dataPath, dataValue, lastReferenceValue } from "@openfn/language-common";