import { FormRenderProps } from '../../../utils'; /** * FormBottomField Component * * A utility component that renders helper text and error messages below form fields. * This component is used by various form field components to maintain consistent * presentation of helper text and validation errors. * * @component * @param {FormRenderProps} props - Form rendering properties from parent form */ declare const FormBottomField: (props: FormRenderProps) => import("react/jsx-runtime").JSX.Element; /** * Export the FormBottomField component for use in form field components * This component handles the consistent display of helper text and error messages */ export default FormBottomField;