/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { HTMLAttributes, PropsWithChildren } from 'react'; export type CardHeadingGroupProps = { /** A short phrase of text, e.g. to categorise the card. Displayed above the card heading. */ tagline: string; } & PropsWithChildren>; export declare const CardHeadingGroup: import("react").ForwardRefExoticComponent<{ /** A short phrase of text, e.g. to categorise the card. Displayed above the card heading. */ tagline: string; } & HTMLAttributes & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes>;