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