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