import { type IconProps } from "@salt-ds/icons"; import { type ComponentType, type HTMLAttributes } from "react"; export interface MetricContentProps extends HTMLAttributes { /** * These props will be passed to the indicator icon. Use this to render a * custom icon. * * @see `Icon` for a list of valid props. */ IndicatorIconProps?: Partial; /** * Replace the default Icon component */ IndicatorIconComponent?: ComponentType; /** * Other data that may serve as additional information to the main value */ subvalue?: string | number; /** * The main value to display in the metric */ value: string | number; } export declare const MetricContent: import("react").ForwardRefExoticComponent>;