import { type HTMLAttributes } from "react"; import { type MetricContextValue } from "./internal"; export interface MetricProps extends MetricContextValue, HTMLAttributes { /** * The aria-level attribute to be applied to the heading component. The default is 2. * * As an ADA requirement, the heading component should be the first valid component inside the Metric. It is the title * if is placed before . It is the main value if is placed before . */ headingAriaLevel?: number; /** * This prop is used to help implement the accessibility logic. * If you don't provide this prop. It falls back to a randomly generated id. */ id?: string; } export declare const Metric: import("react").ForwardRefExoticComponent>;