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