import * as React from "react"; import { InputProps } from "reactstrap"; export interface IMathInputProps extends InputProps { } export interface IMathInputState { } export declare class MathInput extends React.PureComponent { render(): JSX.Element; }