/* 0.85.2 */
/**
*
* Use MathLive to render and edit mathematical formulas.
*
*
* @example
*
*
* @packageDocumentation MathLive SDK Reference 0.85.2
* @version 0.85.2
*
*/
import { RemoteVirtualKeyboardOptions, TextToSpeechOptions, AutoRenderOptions } from './options';
export * from './commands';
export * from './core';
export * from './options';
export * from './mathfield';
export * from './mathfield-element';
export declare function makeSharedVirtualKeyboard(options?: Partial): void;
export declare function convertLatexToMarkup(text: string, options?: {
mathstyle?: 'displaystyle' | 'textstyle';
format?: string;
}): string;
export declare function convertLatexToMathMl(latex: string, options?: Partial<{
generateID: boolean;
}>): string;
export declare function convertLatexToSpeakableText(latex: string, options?: Partial): string;
export declare function renderMathInDocument(options?: AutoRenderOptions): void;
export declare function renderMathInElement(element: string | HTMLElement, options?: AutoRenderOptions): void;
export declare const version: {
mathlive: string;
computeEngine: string;
};