import React from 'react'; import type { FormComponent } from '../FormBuilder/types/FormSchema'; import type { FormState } from './FormValidator'; interface Props { component: FormComponent; formState?: FormState; value?: string[]; onChange?: (value: string[]) => void; optionRef?: (el: any, idx?: number) => void; } declare const CheckboxGroup: React.FC; export default CheckboxGroup;