import { FC, PropsWithChildren, ThHTMLAttributes } from 'react'; import { TableProps } from '../../Table'; export interface TableHeadingProps extends ThHTMLAttributes { /** * Controls horizontal alignment of the heading content. * Inherits from TableProps and typically affects text or layout alignment. * * - 'start' | 'center' | 'end' | 'between' */ dataAlign?: TableProps['dataAlign']; } /** The TableHeading component represents a single `` cell within the table header (``), supporting semantic labeling and optional content alignment via the dataAlign prop for consistent column layout */ export declare const TableHeading: FC>;