import * as React from "react"; export interface PMathpixLoader { children: React.ReactNode; notScrolling?: boolean; textAlignJustify?: boolean; } declare class MathpixLoader extends React.Component { /** the state of the component */ state: { isReadyToTypeSet: boolean; }; componentDidMount(): void; render(): React.JSX.Element; } export default MathpixLoader;