import { CSSProperties } from 'react'; import { GetPopupContainer } from 'antd/lib/table/interface'; import { CollaboratorValue, MutiCollaboratorValue } from '@easyv/dtable-types/output/Cell'; interface Props { className?: string; lineClamp?: number; style?: CSSProperties; value: MutiCollaboratorValue; onChange?: (v: MutiCollaboratorValue) => void; onDropDownVisibleChange?: (v: boolean) => void; onSelectDelete?: (id: CollaboratorValue) => void; onSelectAdd?: (id: CollaboratorValue) => void; defaultOpen?: boolean; getPopupContainer?: GetPopupContainer; disabled?: boolean; } declare function Comp(props: Props): JSX.Element; export default Comp;