import { Progress as ProgressPrimitive } from 'radix-ui'; declare const METER_VARIANTS: readonly ["default", "neutral", "completion", "critical"]; type MeterVariant = (typeof METER_VARIANTS)[number]; declare const MeterIndicatorRoot: ({ ratio, className }: { ratio: number; className?: string; }) => import("react/jsx-runtime").JSX.Element; declare const MeterRoot: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; declare const Meter: import("react").MemoExoticComponent, "ref"> & { variant: MeterVariant; } & import("react").RefAttributes>>; export { Meter, METER_VARIANTS, MeterIndicatorRoot, MeterRoot }; export type { MeterVariant };