import { LegacyRef } from 'react' import { Column, TableProps } from 'react-table' export interface ColumnFixed extends Column { fixed?: 'left' | 'right' | true; columns?: Array>; } export interface TablePropsColumnFixed extends TableProps { columns?: Array>; innerRef?: LegacyRef; } export function withFixedColumnsStickyPosition(ReactTableComponent: React.ComponentType>>): React.ComponentType>> export function withFixedColumnsScrollEvent(ReactTableComponent: React.ComponentType>>): React.ComponentType>> export default function withFixedColumns(ReactTableComponent: React.ComponentType>>): React.ComponentType>>