import { type TableActionsBase, type TableDataSource } from '@mezzanine-ui/core/table'; export interface TableActionsCellProps { /** Actions configuration */ actions: TableActionsBase; /** Custom class name */ className?: string; /** Column index for highlight calculation */ columnIndex: number; /** Fixed position */ fixed?: 'end' | 'start'; /** Fixed offset */ fixedOffset?: number; /** Row record */ record: T; /** Row index */ rowIndex: number; /** Whether to show shadow */ showShadow?: boolean; /** Cell style */ style?: React.CSSProperties; /** Explicit width for dragging state */ width?: number; } declare const TableActionsCellInner: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export declare const TableActionsCell: typeof TableActionsCellInner; export {};