/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { HTMLAttributes, PropsWithChildren } from 'react'; export type CardProps = PropsWithChildren>; /** * @see {@link https://designsystem.amsterdam/?path=/docs/components-navigation-card--docs Card docs at Amsterdam Design System} */ export declare const Card: import("react").ForwardRefExoticComponent & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes> & { Heading: import("react").ForwardRefExoticComponent<{ color?: "inverse"; level: 2 | 3 | 1 | 4; size?: "level-1" | "level-2" | "level-3" | "level-4" | "level-5"; } & HTMLAttributes & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>; HeadingGroup: import("react").ForwardRefExoticComponent<{ tagline: string; } & HTMLAttributes & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>; Image: import("react").ForwardRefExoticComponent<{ alt: string; } & import("../common/types").AspectRatioProps & Omit, "children"> & import("react").RefAttributes>; Link: import("react").ForwardRefExoticComponent & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>; };