import { FC } from 'react'; import { CheckboxProps, StackProps } from '@mui/material'; import { FormControlLabelProps } from '@mui/material/FormControlLabel'; import { IFormOption } from '../type'; export interface ICheckboxValue { label: string; value: string | number; } export interface CheckboxListProps { options: IFormOption[]; value?: ICheckboxValue[]; onChange: (values: ICheckboxValue[]) => void; multiple?: boolean; stackProps?: StackProps; checkboxProps?: CheckboxProps; formControlLabelProps?: Omit; } declare const CheckboxList: FC; export default CheckboxList;