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 {};
