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