/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { HTMLAttributes, PropsWithChildren } from 'react'; export type FigureProps = PropsWithChildren>; /** * Groups media content with a caption that describes it. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-media-figure--docs Figure docs at Amsterdam Design System} */ export declare const Figure: import("react").ForwardRefExoticComponent & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes> & { Caption: import("react").ForwardRefExoticComponent<{ readonly color?: "inverse"; } & Readonly>> & import("react").RefAttributes>; };