import { type TableColumn, type TableDataSource } from '@mezzanine-ui/core/table'; export interface TableCellProps { className?: string; colSpan?: number; column: TableColumn; columnIndex: number; fixed?: 'end' | 'start'; fixedOffset?: number; record: T; rowIndex: number; /** Whether to show shadow on this cell (only for edge fixed columns) */ showShadow?: boolean; style?: React.CSSProperties; /** Explicit width for dragging state (when position: fixed breaks colgroup) */ width?: number; } declare const TableCellInner: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export declare const TableCell: typeof TableCellInner; export {};