import { FormRenderProps, VariantProps } from '../../../utils'; /** * FormRadioGroup Component * * A radio button group component that integrates with react-hook-form for form state management. * Renders multiple radio options in a row with labels and validation support. * * @component * @param {Object} props - The component props * @param {FormRenderProps} props.props - Form rendering properties from parent form * @param {VariantProps} props.variant - UI variant style ('standard', 'outlined', etc.) * * @example * // Basic usage in FormRender with settings array * */ declare const FormRadioGroup: ({ props, variant }: { props: FormRenderProps; variant: VariantProps; }) => import("react/jsx-runtime").JSX.Element; /** * Export the FormRadioGroup component for use in the form renderer * This component is used for radio group input types */ export default FormRadioGroup;