import React from 'react'; import CheckOptionType from './CheckOptionType'; export interface CheckboxGroupProps { className?: string | null; classNameLabel?: string | null; labelStyle?: object; options: CheckOptionType[]; style?: object; } declare const CheckboxGroup: React.FC; export default CheckboxGroup;