UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

15 lines (14 loc) 646 B
import type { Virtualizer } from '@tanstack/react-virtual'; import type { ClassNames, DivWithCustomScrollProp } from '../types/index.js'; interface ColumnHeaderContainerProps { classNames: ClassNames; headerProps: Record<string, any>; headerGroup: Record<string, any>; resizeInfo: Record<string, unknown>; isRtl: boolean; columnVirtualizer: Virtualizer<DivWithCustomScrollProp, Element>; uniqueId: string; showVerticalEndBorder: boolean; } export declare const ColumnHeaderContainer: import("react").ForwardRefExoticComponent<ColumnHeaderContainerProps & import("react").RefAttributes<HTMLDivElement>>; export {};