import type { FC } from "react"; import { type CheckboxListProps } from "./CheckboxList.types"; type Props = { groups: CheckboxListProps["groups"]; onChange?: CheckboxListProps["onChange"]; onStateChange?: (state: CheckboxListProps["groups"]) => void; className?: string; }; export { type Props as CheckboxListProps }; export declare const CheckboxList: FC;