UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

19 lines (18 loc) 539 B
/** * Web TableContext Context * */ import type { RefObject } from 'react'; import type { Translation } from '../../shared/Context'; import type { TableAllProps } from './Table'; type TableContextProps = { trCountRef: RefObject<{ count: number; }>; rerenderAlias: Record<string, never>; collapseTrCallbacks: RefObject<(() => void)[]>; allProps: TableAllProps & Translation['Table']; hasAccordionRows?: boolean; }; export declare const TableContext: import("react").Context<TableContextProps>; export {};