/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { HTMLAttributes, PropsWithChildren } from 'react'; export type TableBodyProps = PropsWithChildren>; /** * The body section of a Table, containing the data rows. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-containers-table--docs Table docs at Amsterdam Design System} */ export declare const TableBody: import("react").ForwardRefExoticComponent & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>;