/** * @fileoverview Greek letters and mathematical symbols for LaTeX rendering * @module plugins/latex/symbols */ /** * Greek letters mapping (lowercase) */ export declare const GREEK_LOWERCASE: Record; /** * Greek letters mapping (uppercase) */ export declare const GREEK_UPPERCASE: Record; /** * Mathematical operators */ export declare const MATH_OPERATORS: Record; /** * Greek letter variants */ export declare const GREEK_VARIANTS: Record; /** * Arrow symbols */ export declare const ARROWS: Record; /** * Relation symbols */ export declare const RELATIONS: Record; /** * Binary operators */ export declare const BINARY_OPERATORS: Record; /** * Large operators */ export declare const BIG_OPERATORS: Record; /** * Miscellaneous symbols */ export declare const MISC_SYMBOLS: Record; /** * Dots and ellipses */ export declare const DOTS: Record; /** * Delimiters */ export declare const DELIMITERS: Record; /** * Named functions (rendered as upright text) */ export declare const FUNCTIONS: Record; /** * All symbols combined */ export declare const ALL_SYMBOLS: Record; /** * Blackboard-bold (\mathbb) letter map */ export declare const BLACKBOARD: Record; /** * Calligraphic (\mathcal) letter map */ export declare const CALLIGRAPHIC: Record; /** * Fraktur (\mathfrak) letter map */ export declare const FRAKTUR: Record; /** Total number of directly-mapped LaTeX commands (excludes alphabet maps). */ export declare const SYMBOL_COUNT: number; /** * Get Unicode symbol for a LaTeX command */ export declare function getSymbol(command: string): string | undefined; /** * Check if a command is a known symbol */ export declare function isSymbol(command: string): boolean;