/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { HTMLAttributes, PropsWithChildren } from 'react'; export type FigureProps = PropsWithChildren>; /** * @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<{ color?: "inverse"; } & HTMLAttributes & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>; };