import { FoundationElement } from '@ni/fast-foundation'; import type { UnitScale } from '@ni/unit-format/unit-scale'; /** * The base class for an element that provides a unit scale for scaled unit conversions */ export declare abstract class Unit extends FoundationElement { /** @internal */ resolvedUnitScale?: UnitScale; }