import * as react from 'react'; import { HTMLAttributes } from 'react'; declare const meterTones: { readonly default: "bg-tollerud-yellow"; readonly success: "bg-tollerud-success"; readonly warning: "bg-tollerud-warning"; readonly error: "bg-tollerud-error"; }; interface MeterProps extends HTMLAttributes { /** Current value */ value: number; /** Maximum value (defaults to 100) */ max?: number; /** Optional label rendered above the bar */ label?: React.ReactNode; /** Show the numeric value/percentage to the right of the label */ showValue?: boolean; tone?: keyof typeof meterTones; } declare const Meter: react.ForwardRefExoticComponent>; export { Meter, type MeterProps };