/// import Box from './Box'; import { IProps } from '../utils'; interface IMProps extends IProps { data?: string; } export default class TextType extends Box { constructor(props: any); componentWillReceiveProps(nextProps: any): void; onInputBlur: (e: any) => void; onInputChange: (e: any) => void; getChildrenToRender: () => JSX.Element; } export {};