import { ReactElement } from "react"; import { XmlProps } from "react-native-svg"; export type MathJaxProps = Omit & { color?: string; fontSize?: number; children?: string; }; export default function MathJax(props: MathJaxProps): ReactElement;