/**
 * @jsxRuntime classic
 * @jsx jsx
 */
import { type HTMLProps } from 'react';
import type { SortOrderType } from '../types';
import { type TruncateStyleProps } from './constants';
type HeadCellProps = TruncateStyleProps & HTMLProps<HTMLTableCellElement> & {
    onClick?: () => void;
    isSortable?: boolean;
    sortOrder?: SortOrderType;
    testId?: string;
};
export declare const HeadCell: import('react').ForwardRefExoticComponent<Omit<HeadCellProps, 'ref'> & import('react').RefAttributes<HTMLTableCellElement>>;
export {};
