/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { HTMLAttributes, PropsWithChildren } from 'react'; export type CardProps = PropsWithChildren>; /** * A brief section of a heading, some text, and optionally an image, that leads to a related page. * * @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> & { Content: import("react").ForwardRefExoticComponent>> & import("react").RefAttributes>; Heading: import("react").ForwardRefExoticComponent<{ readonly color?: "inverse"; readonly level: 1 | 2 | 3 | 4; readonly size?: "level-1" | "level-2" | "level-3" | "level-4" | "level-5"; } & Readonly>> & import("react").RefAttributes>; HeadingGroup: import("react").ForwardRefExoticComponent<{ readonly tagline?: string; } & Readonly>> & import("react").RefAttributes>; Image: import("react").ForwardRefExoticComponent<{ readonly alt: string; } & Readonly & Readonly, "children">> & import("react").RefAttributes>; Link: import("react").ForwardRefExoticComponent<{ readonly linkComponent?: import("react").ElementType; } & import("react").AnchorHTMLAttributes & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>; };