import { FormRenderProps, VariantProps } from '../../../utils'; /** * FormCheckBoxGroup Component * * A group of checkbox input fields that integrates with react-hook-form for form state management. * Renders multiple checkboxes 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 FormCheckBoxGroup: ({ props, variant, }: { props: FormRenderProps; variant: VariantProps; }) => import("react/jsx-runtime").JSX.Element; /** * Export the FormCheckBoxGroup component for use in the form renderer * This component is used for checkbox group input types */ export default FormCheckBoxGroup;