import React, { FC, PropsWithChildren } from 'react'; interface ICheckboxGroupProps { className?: string; value?: string[]; defaultValue?: string[]; disabled?: boolean; onChange?: (value: string[]) => void; } interface IToggleOptionProps { value?: string; checked: boolean; } interface ICheckboxGroupContext { value?: string[]; disabled?: boolean; isControlled?: boolean; toggleOption: (option: IToggleOptionProps) => void; } export declare const GroupContext: React.Context; declare const CheckboxGroup: FC>; export default CheckboxGroup;