import { Node } from '@stencila/schema';
import { Jesta } from '.';
/**
 * Call a function within a document.
 *
 * @param name The name of the function
 * @param args Arguments to call the document or function with
 */
export declare function call(this: Jesta, name: string, args: Record<string, Node>): Promise<Node>;
