import { type LinkProps } from "@salt-ds/core"; import { type HTMLAttributes } from "react"; export interface MetricHeaderProps extends HTMLAttributes { /** * If provided, subtitle will be rendered as a `Link` element with these props. * * @see `Link` for a list of valid props. */ SubtitleLinkProps?: Omit, "children">; /** * Subtitle of the Metric Header */ subtitle?: string; /** * Title of the Metric Header */ title: string; } export declare const MetricHeader: import("react").ForwardRefExoticComponent>;