import { BoxedExpression } from "@holgerengels/compute-engine"; export declare const latexOptions: { decimalMarker: string; groupSeparator: string; imaginaryUnit: string; invisiblePlus: string; }; export declare function renderBoxed(expression: BoxedExpression): import("lit-html").TemplateResult<1>; export declare function renderLatex(tex: string): import("lit-html").TemplateResult<1>; export declare function boxedLatex(expression: BoxedExpression): string; export declare function latex(tex: string): string; export declare const assert: (assertion: boolean, message?: string, params?: any[]) => void; export declare function asciiparse(asciimath: string): BoxedExpression;