import { CSSProperties } from "react"; import { GetPopupContainer } from "antd/es/table/interface"; import { CollaboratorValue, MutiCollaboratorValue } from "@easyv/dtable-types/output/Cell"; interface Props { bordered?: boolean; 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({ className, bordered, value, lineClamp, style, getPopupContainer, onSelectDelete, onSelectAdd, defaultOpen, onChange, onDropDownVisibleChange, disabled, }: Props): JSX.Element; export default Comp;