import React from 'react'; import './style/index.less'; declare const itemTypes: ["popup", "pulldown"]; export declare type itemType = typeof itemTypes[number]; interface basecheckBoxItemProps { type?: itemType; value: any; disabled?: boolean; checked?: boolean; checkedColor?: string; hoverColor?: string; headClassName?: string; middleClassName?: string; tailClassName?: string; head?: any; middle?: any; tail?: any; disabledOnClick?: any; disabledTail?: any; checkedTail?: any; unCheckedTail?: any; } declare type checkBoxItemProps = basecheckBoxItemProps & React.HTMLProps; declare const checkBoxItem: React.FC; export default checkBoxItem;