import type { ValuesOf } from '../../Types/ValuesOf'; /** * `MeterRange` - The `MeterRange` object is used to describe the different types of meter ranges. */ export declare const MeterRange: { /** * `normal` - */ readonly Normal: "normal"; /** * `low` - */ readonly Low: "low"; /** * `high` - */ readonly High: "high"; /** * `optimum` - */ readonly Optimum: "optimum"; }; /** * @public */ export type MeterRange = ValuesOf; //# sourceMappingURL=MeterRange.d.ts.map