/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { PropsWithChildren, TableHTMLAttributes } from 'react'; export type TableProps = PropsWithChildren>; /** * @see {@link https://designsystem.amsterdam/?path=/docs/components-containers-table--docs Table docs at Amsterdam Design System} */ export declare const Table: import("react").ForwardRefExoticComponent & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes> & { Body: import("react").ForwardRefExoticComponent & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>; Caption: import("react").ForwardRefExoticComponent & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>; Cell: import("react").ForwardRefExoticComponent<{ align?: "center" | "end"; } & Omit, "align"> & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>; Footer: import("react").ForwardRefExoticComponent & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>; Header: import("react").ForwardRefExoticComponent & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>; HeaderCell: import("react").ForwardRefExoticComponent<{ align?: "center" | "end"; } & Omit, "align"> & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>; Row: import("react").ForwardRefExoticComponent & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>; };