import { FieldLabelProps } from './field-label.types'; /** * @internal * The `FieldLabel` component renders a label for a form field like `input`, `select`, `textarea`, etc. * It has a default bold view and can be changed to a normal view for checkbox, radio or toggle fields. * Internally used with the `BaseField` component to render a label for a field. * Might be used as a standalone component for custom form fields, check the usage example. * * ### Usage * * ```tsx * import { FieldLabel } from '@bloomreach/react-banana-ui'; * import { FieldInput } from '@bloomreach/react-banana-ui'; * * export default function MyCustomLabel() { * return ( * <> * * Write an example of component usage * * ); * } * ``` */ declare const FieldLabel: import('react').ForwardRefExoticComponent>; export default FieldLabel;