import { FC, TdHTMLAttributes } from 'react'; import { TableProps } from '../../Table'; export interface TableDataProps extends TdHTMLAttributes { /** * Controls horizontal alignment of the cell’s content. * Inherits from TableProps and typically affects text alignment or flex layout. * * - 'start' | 'center' | 'end' | 'between' */ dataAlign?: TableProps['dataAlign']; } /** The TableData component represents a single `` cell within a Table, supporting semantic HTML attributes and optional content alignment via the dataAlign prop for layout consistency */ export declare const TableData: FC;