import type { ValuesOf } from '../../Types/ValuesOf'; /** * `MeterScale` - The `MeterScale` object is used to describe the different types of meter scale modes. * * @public */ export declare const MeterScale: { /** * `continuous` - Displays the meter as a single continuous bar/ring. * The fill color changes based on the current range (low, normal, high, optimum). * This is the default mode and matches the native HTML meter element behavior. */ readonly Continuous: "continuous"; /** * `segmented` - Displays the meter with visible segments for each range zone. * The segments (low, optimum, high) are always visible with their respective colors. * The current value is indicated by a marker or positional fill. */ readonly Segmented: "segmented"; }; /** * @public */ export type MeterScale = ValuesOf; //# sourceMappingURL=MeterScale.d.ts.map