import { BoxedExpression, ComputeEngine } from "@holgerengels/compute-engine"; import { TemplateResult } from "lit"; import AsciiMathParser from 'asciimath2tex'; export declare const ce: ComputeEngine; export declare const boxed_0: BoxedExpression; export declare const parser: AsciiMathParser; export interface Equation { variable: string; left: BoxedExpression; right: BoxedExpression; former?: Equation; derived?: Equation[]; operation?: Operation; arg?: BoxedExpression; error?: string; message?: string; } export interface Operation { name: string; title: string; help: string; func: (e: Equation, arg?: BoxedExpression) => Promise; arg: boolean; render(arg?: BoxedExpression): TemplateResult; } export interface Hint { match: string; operation: string; message: string; } export interface Strategy { name: string; title: string; help: string; arg: boolean; apply(e: Equation, callback: (op: Operation, e: Equation, arg?: BoxedExpression) => Promise): void; }