/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { PropsWithChildren, ThHTMLAttributes } from 'react'; import type { tableCellAlignOptions } from './TableCell'; type TableHeaderCellAlign = (typeof tableCellAlignOptions)[number]; export type TableHeaderCellProps = { /** The horizontal alignment of the cell’s content. */ readonly align?: TableHeaderCellAlign; } & Readonly, 'align'>>>; /** * A header cell within a Table that labels a column or row. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-containers-table--docs Table docs at Amsterdam Design System} */ export declare const TableHeaderCell: import("react").ForwardRefExoticComponent<{ /** The horizontal alignment of the cell’s content. */ readonly align?: TableHeaderCellAlign; } & Readonly, "align">>> & import("react").RefAttributes>; export {};