import * as React from 'react'; import type { TableDataItem, TableProps } from "../../Table.js"; import "./withTableSelection.css"; export declare const selectionColumnId = "_selection"; export interface WithTableSelectionProps { onSelectionChange: (ids: string[]) => void; selectedIds: string[]; isRowSelectionDisabled?: (item: I, index: number) => boolean; } export declare function withTableSelection(TableComponent: React.ComponentType & E>): React.ComponentType & WithTableSelectionProps & E>;