/// import { CollaboratorOptions } from "@easyv/dtable-types/output/Column"; import { MutiCollaboratorValue } from "@easyv/dtable-types/output/Cell"; interface Props { lineClamp?: number; value: MutiCollaboratorValue; typeOptions: CollaboratorOptions; } declare function Comp({ typeOptions, value, lineClamp, className, }: Props & ClassNameAndStyle): JSX.Element | null; export default Comp;