/** * @jsxRuntime classic * @jsx jsx */ import { type FC, type HTMLProps, type ReactNode } from 'react'; import { type SortOrderType } from '../types'; import { type TruncateStyleProps } from './constants'; interface HeadProps { isRanking?: boolean; children: ReactNode; testId?: string; } export declare const Head: FC; type HeadCellProps = TruncateStyleProps & HTMLProps & { onClick?: () => void; isSortable?: boolean; sortOrder?: SortOrderType; testId?: string; }; export declare const HeadCell: import('react').ForwardRefExoticComponent & import('react').RefAttributes>; export {};