import { type FC } from "react"; import { type CheckboxGroupProps, type CheckboxListItem } from "./CheckboxList.types"; type Props = CheckboxGroupProps & { onStateChange?: (state: CheckboxListItem[]) => void; }; export declare const CheckboxGroup: FC; export {};