/** A numeric value tagged with its unit */
export interface UnitAndValueString {
    /** Unit of the value */
    unit: string;
    /**  */
    value: string;
}
//# sourceMappingURL=UnitAndValueString.d.ts.map