import type { ReactNode } from 'react'; type HeaderCellProps = { children: ReactNode; className?: string; isOrdered?: boolean; orderDirection?: 'asc' | 'desc' | 'none'; onOrder?: (newOrder: 'asc' | 'desc') => void; info?: string; width?: string; minWidth?: string; maxWidth?: string; }; export declare const HeaderCell: ({ children, isOrdered, orderDirection, onOrder, className, info, width, minWidth, maxWidth, }: HeaderCellProps) => import("react").JSX.Element; export {}; //# sourceMappingURL=HeaderCell.d.ts.map