import React from 'react'; export interface IProps extends React.HTMLAttributes { value?: string; hidePlaceholder?: boolean; } declare const PlainText: React.ForwardRefExoticComponent>; export default PlainText;