import type { TableVerticalAlign } from './types';
export interface TableContextValue {
    density: 'compact' | 'balanced' | 'spacious';
    dividers: 'rows' | 'columns' | 'grid' | 'none';
    isStriped: boolean;
    hasHover: boolean;
    verticalAlign: TableVerticalAlign;
    textOverflow: 'wrap' | 'truncate';
}
export declare const TableContext: import("react").Context<TableContextValue | null>;
//# sourceMappingURL=TableContext.d.ts.map