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