import { FC } from 'react'; interface CheckboxProps { listOptionWithAPI?: { url: string; nameKey: string; valueKey: string; labelKey: string; }; disabled?: boolean; listOption?: ListOption[]; onChange?: (value: (string | number)[] | null) => void; defaultValue?: (string | number)[]; name?: string; className?: string; } interface ListOption { label: string; value: string | number; } declare const Checkbox: FC; export default Checkbox;