import type { FC, ReactNode } from 'react'; import { CheckboxValue } from './index.js'; export interface CheckboxGroupProps { value?: CheckboxValue[]; onChange?: (val: CheckboxValue[]) => void; defaultValue?: CheckboxValue[]; disabled?: boolean; children?: ReactNode; } export declare const Group: FC;