UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

22 lines (21 loc) 837 B
import type { Virtualizer } from '@tanstack/react-virtual'; import type { DivWithCustomScrollProp } from '../types/index.js'; interface ColumnHeaderContainerProps { headerProps: Record<string, any>; headerGroup: Record<string, any>; onSort: (e: CustomEvent<{ column: unknown; sortDirection: string; }>) => void; onGroupByChanged: (e: CustomEvent<{ column?: Record<string, unknown>; isGrouped?: boolean; }>) => void; 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 {};