import * as React from 'react'; interface PropTypes { maxLength?: number; children: React.ReactNode; } declare function InputLengthText({ maxLength, children }: PropTypes): JSX.Element; declare namespace InputLengthText { var defaultProps: { maxLength: number; }; } export default InputLengthText;