import type { ComponentPropsWithoutRef, ReactNode } from "react"; import { type As, type CheckboxGroupProps, type MergeWithAs } from "@heroui/react"; import type { Field } from "soda-tanstack-form"; export type FormCheckboxGroupProps = MergeWithAs, ComponentPropsWithoutRef, CheckboxGroupProps, AsComponent> & { field: Field; component?: (props: MergeWithAs, ComponentPropsWithoutRef, CheckboxGroupProps, AsComponent>) => ReactNode; }; export declare function FormCheckboxGroup({ field, component: CheckboxGroup2, ...rest }: FormCheckboxGroupProps): ReactNode;