/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { HTMLAttributes, PropsWithChildren } from 'react'; export type FigureCaptionProps = { /** Changes the text colour for readability on a dark background. */ readonly color?: 'inverse'; } & Readonly>>; /** * A caption that describes or credits the media content of a Figure. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-media-figure--docs Figure docs at Amsterdam Design System} */ export declare const FigureCaption: import("react").ForwardRefExoticComponent<{ /** Changes the text colour for readability on a dark background. */ readonly color?: "inverse"; } & Readonly>> & import("react").RefAttributes>;