import { FC } from 'react';
import { ActiveData } from '../Checkbox';
import { UseFormRegisterReturn } from 'react-hook-form';
type PHXCheckboxGroupProps = {
    children: any;
    isCheckedCheckboxParent: boolean;
    titleCheckBoxParent: string;
    idCheckBoxParent: any;
    defaultChecked: any;
    className?: string;
    label?: string;
    helpText?: string;
    expanded?: boolean;
    register?: UseFormRegisterReturn;
    onChange?: any;
    error?: boolean;
    errorType?: 'required-field' | 'duplicate-field';
    checkType?: 'default' | 'with-border';
    disabled?: boolean;
    activeData?: ActiveData;
};
export declare const PHXCheckboxGroup: FC<PHXCheckboxGroupProps>;
export {};
