import { DataURL } from "@zsviczian/excalidraw/types/types"; import ExcalidrawView from "./ExcalidrawView"; import ExcalidrawPlugin from "./main"; import { MimeType } from "./EmbeddedFileLoader"; import { FileId } from "@zsviczian/excalidraw/types/element/types"; export declare const updateEquation: (equation: string, fileId: string, view: ExcalidrawView, addFiles: Function, plugin: ExcalidrawPlugin) => Promise; export declare function tex2dataURL(tex: string, plugin: ExcalidrawPlugin): Promise<{ mimeType: MimeType; fileId: FileId; dataURL: DataURL; created: number; size: { height: number; width: number; }; }>; export declare function mathjaxSVG(tex: string, plugin: ExcalidrawPlugin): Promise<{ mimeType: MimeType; fileId: FileId; dataURL: DataURL; created: number; size: { height: number; width: number; }; }>;