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