import React from 'react'; import { TableDataItem, TableProps } from '../../Table'; 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>;