/// import { FieldProps } from 'formik'; interface CheckboxGroupProps extends FieldProps { label: string; className?: string; options: { label: string; value: string; }[]; } export default function CheckboxGroup({ label, options, ...props }: CheckboxGroupProps): JSX.Element; export {};