UNPKG

@amsterdam/design-system-react

Version:

All React components from the Amsterdam Design System. Use it to compose pages in your website or application.

11 lines (10 loc) 492 B
/** * @license EUPL-1.2 * Copyright (c) 2022 Robbert Broersma * Copyright Gemeente Amsterdam */ import type { HTMLAttributes, PropsWithChildren } from 'react'; export type TableCaptionProps = PropsWithChildren<HTMLAttributes<HTMLTableCaptionElement>>; export declare const TableCaption: import("react").ForwardRefExoticComponent<HTMLAttributes<HTMLTableCaptionElement> & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes<HTMLTableCaptionElement>>;