/** * @license EUPL-1.2 * Copyright (c) 2022 Robbert Broersma * Copyright Gemeente Amsterdam */ import type { HTMLAttributes, PropsWithChildren } from 'react'; export type TableCaptionProps = PropsWithChildren>; /** * The caption of a Table, providing its accessible name. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-containers-table--docs Table docs at Amsterdam Design System} */ export declare const TableCaption: import("react").ForwardRefExoticComponent & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>;