import React, { CSSProperties } from 'react'; import './index.css'; export interface MultiSelectCheckboxProps { styles?: CSSProperties; self?: boolean; nextMsgBelongSameUser?: boolean; checkDisabled?: boolean; checked?: boolean; onChange?: (checked: boolean) => void; } export declare const MultiSelectCheckbox: React.FC;