export type MathExpression = string;
export interface MathOptions {
    width?: number;
    height?: number;
    padding?: number;
    margin?: number;
    backgroundColor?: string;
    responsive?: boolean;
    maintainAspectRatio?: boolean;
}
