export default function RequiredCheckBoxGroup({ customText, ...props }: {
    name: string;
    children: JSX.Element | JSX.Element[];
    customText?: string;
}): JSX.Element;
