/** * @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. * @deprecated Add a Metadata as a child instead. Will be removed on or after 2027-02-08. */ readonly tagline?: string; } & Readonly>>; /** * Groups a Card's heading with its metadata, ensuring screen readers encounter the heading first. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-navigation-card--docs Card docs at Amsterdam Design System} */ export declare const CardHeadingGroup: import("react").ForwardRefExoticComponent<{ /** * A short phrase of text, e.g. to categorise the card. Displayed above the card heading. * @deprecated Add a Metadata as a child instead. Will be removed on or after 2027-02-08. */ readonly tagline?: string; } & Readonly>> & import("react").RefAttributes>;