import { TypographyProps } from '@mui/material'; export type NumberWithUnitValue = number | string | null; export type NumberWithUnitProps = { value: NumberWithUnitValue; unit: string; size?: "micro" | "small" | "inter" | "big"; position?: "default-side" | "below-left-aligned" | "below-center-aligned"; colorOverride?: string; hideUnitOnNull?: boolean; withPlus?: boolean; /** Typography token for the unit when a consuming design uses a different semantic scale. */ unitVariant?: TypographyProps["variant"]; /** Accessible name for the empty indicator when `value` is null. */ emptyLabel?: string; }; export declare const NumberWithUnit: (props: NumberWithUnitProps) => import("react/jsx-runtime").JSX.Element;