import React from 'react'; interface IErrorText extends React.HTMLAttributes { value?: string | undefined; } export default function (props: IErrorText): JSX.Element; export {};