import React from 'react'; export type TableSize = 'small' | 'medium'; export type TablePaddingVariant = 'normal' | 'checkbox' | 'none'; export type TableVariant = 'head' | 'body' | 'footer'; export interface TableContextValue { size: TableSize; padding: TablePaddingVariant; stickyHeader: boolean; } export interface TableSectionContextValue { /** Which section (head/body/footer) the cell is in. */ variant: TableVariant; } export declare const TableContext: React.Context; export declare const TableSectionContext: React.Context; //# sourceMappingURL=TableContext.d.ts.map