import { TextFieldProps } from './text-field.types'; /** * The text field includes a label, a helper text and a textarea field where users can type multiline of text. * The text field component typically appears in forms and dialogs. * * ## Usage * * ### Basic * * ```jsx * import { TextField } from '@bloomreach/react-banana-ui'; * * export default function TextFieldExample() { * return ; * } * ``` * * ### With label and helper text * ```jsx * import { TextField } from '@bloomreach/react-banana-ui'; * * export default function TextFieldExample() { * return ( * * ); * } * ``` */ declare const TextField: import('react').ForwardRefExoticComponent>; export default TextField;