import * as React from "react"; import * as NAST from "nast-types"; import { BlockRendererProps } from "../interfaces"; export interface EquationProps extends React.HTMLAttributes { latex: string; } export interface EquationDriverProps extends BlockRendererProps { current: NAST.Equation; } export declare function Equation(props: EquationProps): JSX.Element; export declare function EquationDriver(props: EquationDriverProps): JSX.Element; //# sourceMappingURL=Equation.d.ts.map