import React, { FC } from 'react'; export declare type TableRowProps = React.ComponentProps<'tr'>; export declare const TableRow: FC; export declare type TableCellProps = React.ComponentProps<'td'> & { variant?: 'default' | 'text-primary' | 'text-secondary'; nowrap?: boolean; }; export declare const TableCell: FC;