import { Column as RTColumn } from 'react-table'; import { Column } from './types'; export declare const EXPANDER_CELL_ID: "__expander"; type InternalColumn = RTColumn & { visible?: (data: T[]) => boolean; }; export declare function getColumns(columns: Array>, showExpandAll?: boolean): Array>; export {};