/** * @jsxRuntime classic * @jsx jsx */ import { type FC, type HTMLProps, type ReactNode } from 'react'; import { type TruncateStyleProps } from '../constants'; type RankableTableBodyCellProps = HTMLProps & TruncateStyleProps & { isRanking?: boolean; children?: ReactNode; }; export declare const RankableTableBodyCell: FC; export {};