/**
* Execute a sequence of operations.
* Wraps `@openfn/language-common/execute`, and prepends initial state for khanacademy.
* @private
* @param {Operations} operations - Operations to be performed.
* @returns {Operation}
*/
export function execute(...operations: Operations): Operation;
/**
* Fetch data from the Khan Academy API
* @example
Fetch data from the Khan Academy API
* fetch({ getEndpoint: "topictree", queryParams: { subject: "math" } });
* @public
* @function
* @param {object} params - data to make the query
* @returns {Operation}
*/
export function fetch(params: object): Operation;
export { fn, fnIf, field, sourceValue, fields, alterState, merge, dataPath, dataValue, lastReferenceValue } from "@openfn/language-common";