/** * ZoomableTeX is a wrapper around TeX to be used on mobile. Without wrapping * TeX we run into issues of measuring at the incorrect time resulting in bad * measurements. */ import * as React from "react"; type Props = { children: string; }; type State = { isRendered: boolean; }; export default class ZoomableTeX extends React.Component { constructor(); handleRender: () => void; render(): React.ReactNode; } export {};