import type { ReactNode } from 'react';
import type { ColumnParameters } from '../../contexts/ColumnParametersContext.js';
interface Props {
    columnIndex: number;
    columnName: string;
    columnConfig: Omit<ColumnParameters, 'name' | 'index'>;
    children?: ReactNode;
    canMeasureWidth?: boolean;
    ariaColIndex: number;
    ariaRowIndex: number;
    className?: string;
}
export default function ColumnHeader({ columnIndex, columnName, columnConfig, canMeasureWidth, ariaColIndex, ariaRowIndex, className, children }: Props): import("react/jsx-runtime").JSX.Element;
export {};
