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