/// import { Macros } from './renderLatex'; import { Delimiter } from './types'; import './Latex.css'; export interface LatexProps { children: string | string[]; delimiters?: Delimiter[]; strict?: boolean; macros?: Macros; } export default function Latex({ children, delimiters, strict, macros }: LatexProps): JSX.Element;