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