import * as React from 'react'; import type { ITableColumn, ITableLayout } from './Table'; export interface ITableContext { layout: ITableLayout; isMobile: boolean; expandable: boolean; allExpanded: boolean; setAllExpanded: (allExpanded: boolean) => any; columns: ITableColumn[]; } export declare const TableContext: React.Context;