import { GetStylesApi } from '../../core'; import type { TableFactory } from './Table'; export interface TableContextValue { getStyles: GetStylesApi; stickyHeader: boolean | undefined; striped: 'odd' | 'even' | undefined; highlightOnHover: boolean | undefined; withColumnBorders: boolean | undefined; withRowBorders: boolean | undefined; captionSide: 'top' | 'bottom'; } export declare const TableProvider: import("react").Context, useTableContext: () => TableContextValue;