export function evaluate(templateString: string, context?: Record, options?: EvaluationOptions): string; type SimpleNode = import("@bpmn-io/lezer-feelers").SimpleNode; export type EvaluationOptions = { /** * - whether to enable debug mode, which displays errors inline instead of throwing them */ debug?: boolean | undefined; /** * - function that takes an error and returns the string to display in debug mode */ buildDebugString?: ((arg0: Error) => string) | undefined; /** * - whether to expect strict data types out of our FEEL expression, e.g. boolean for conditionals */ strict?: boolean | undefined; /** * - function to sanitize individual FEEL evaluation results */ sanitizer?: Function | undefined; };