import { type TableSelectionMode } from '@mezzanine-ui/core/table'; export interface TableSelectionCellProps { className?: string; disabled?: boolean; fixed?: boolean; fixedOffset?: number; hidden?: boolean; indeterminate?: boolean; isHeader?: boolean; /** Selection mode */ mode?: TableSelectionMode; onChange: () => void; selected: boolean; showShadow?: boolean; /** Explicit width for dragging state */ width?: number; } export declare const TableSelectionCell: import("react").NamedExoticComponent>;