/**
 * @jsxRuntime classic
 * @jsx jsx
 */
import React, { type FC, type Ref } from 'react';
import { type SortOrderType } from '../types';
export interface TableHeadCellProps {
    colSpan?: number;
    sortKey?: string;
    isSortable?: boolean;
    sortOrder?: SortOrderType;
    isFixedSize?: boolean;
    innerRef?: Ref<HTMLTableCellElement>;
    inlineStyles?: {};
    content?: React.ReactNode;
    onClick?: () => void;
    shouldTruncate?: boolean;
    testId?: string;
    width?: number;
    isRanking?: boolean;
    headCellId: string;
    activeSortButtonId?: string | null;
    ascendingSortTooltip?: string;
    descendingSortTooltip?: string;
    buttonAriaRoleDescription?: string;
    isIconOnlyHeader?: boolean;
}
declare const TableHeadCell: FC<TableHeadCellProps>;
export default TableHeadCell;
