import { UseFieldOptions } from "form-atoms"; import { ZodArrayField, ZodFieldValue } from "../../fields"; import { UseCheckboxGroupProps } from "../../hooks"; export type CheckboxGroupProps = UseCheckboxGroupProps & Pick>, "initialValue">; export declare const CheckboxGroup: ({ field, options, getValue, getLabel, initialValue, }: CheckboxGroupProps) => JSX.Element;