export interface TableContext { /** Shared Table context consumed by Table subcomponents. */ mode?: 'table' | 'treegrid'; headType?: 'docked' | 'fixed' | 'inline'; horizontalOverflow?: 'auto' | 'scroll'; resizableFillLayout?: boolean; tableContainerWidthWithoutBorders?: number | null; /** Private TreeGrid plumbing consumed by TreeGrid.Row and Table.Row. */ hierarchyColumnId?: string; /** Private TreeGrid plumbing consumed by Table.Row. */ treeGridHasBodyTabbableControls?: boolean; } export declare const TableContext: import("react").Context; export default TableContext;