import * as React from "react"; declare module "react-table" { interface TableState { columnResizing: { isResizingColumn: boolean; columnWidths: { [columnName: string]: number; }; }; } interface ColumnInstance { placeholderOf?: ColumnInstance | undefined; columns?: Array>; } interface ColumnInterface { originalId?: string; accessor: string; groupType?: string; cssClasses?: string; label: string; headerCellElement?: JSX.Element; headerCellElementExtension?: JSX.Element; isInlineEditable?: boolean; dataType: string; isRowIndexColumn: boolean; isHeaderAFeelExpression?: boolean; cellDelegate?: (id: string) => React.ReactNode; width?: number; setWidth?: (newWidth: number) => void; isWidthPinned?: boolean; isWidthConstant?: boolean; columns?: Array>; } } //# sourceMappingURL=react-table.d.ts.map