export interface TextCellProps { value: string | null | undefined; variant?: "primary" | "secondary" | "muted"; /** Monospace figures — for codes, serials, IDs (composes with `variant`). */ mono?: boolean; className?: string; truncate?: boolean; maxWidth?: string; } /** Standard text cell for table columns — null/undefined renders as "—". */ export declare function TextCell({ value, variant, mono, className, truncate, maxWidth }: TextCellProps): import("react").JSX.Element; //# sourceMappingURL=TextCell.d.ts.map