import type { ReactNode } from "react"; export interface TableCellProps { /** Right-aligns and renders tabular figures (D62). */ numeric?: boolean; /** Cell content. */ children?: ReactNode; className?: string; } /** ``. `numeric` means right-aligned *and* tabular — a column that aligns * but whose digits jitter between rows defeats the purpose. */ export declare function TableCell({ numeric, children, className }: TableCellProps): import("react").JSX.Element; //# sourceMappingURL=TableCell.d.ts.map