import React, { CSSProperties } from "react"; import { Column } from "@easyv/dtable-types/output/Column"; import { CellValue } from "@easyv/dtable-types/output/Cell"; interface Props { className?: string; style?: CSSProperties; column: Column; value: CellValue; rowId: string; } declare function Cell({ column, value, rowId, className, style }: Props): JSX.Element; declare const _default: React.MemoExoticComponent; export default _default;