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