import { Row } from '@tanstack/react-table'; import { ReactNode } from '../../../../../node_modules/.pnpm/react@19.1.1/node_modules/react'; import { TTableCell } from '../../model/cell.types'; import { TTableItem } from '../../model/table.types'; type CellProps = { children: ReactNode; cell: TTableCell; row: Row; }; declare const CellCommon: ({ children, cell }: CellProps) => import("react/jsx-runtime").JSX.Element; export default CellCommon; //# sourceMappingURL=cell-common.d.ts.map