1 | import * as React from 'react';
|
2 | import type { ColumnType, StickyOffsets } from '../interface';
|
3 | type FlattenColumns<RecordType> = readonly (ColumnType<RecordType> & {
|
4 | scrollbar?: boolean;
|
5 | })[];
|
6 | declare const SummaryContext: React.Context<{
|
7 | stickyOffsets?: StickyOffsets;
|
8 | scrollColumnIndex?: number;
|
9 | flattenColumns?: FlattenColumns<any>;
|
10 | }>;
|
11 | export default SummaryContext;
|