import { DataTableCellProps } from '@epam/uui-core'; import type { DataTableFocusManager } from './DataTableFocusManager'; export type RowsRegistry = Map>; export type CellProps = Pick & CellActions; export interface CellActions { focus: () => void; } export interface RowInfo { id: TId; index: number; } export type { DataTableFocusManager }; //# sourceMappingURL=types.d.ts.map