export interface MlCheckboxProps { checked?: boolean; indeterminate?: boolean; disable?: boolean; dataset?: any; areaFill?: boolean; onChange?: (nextValue: boolean, opts: { dataset: any }) => void; }