import { Unit } from "./unit.js";
export type UnitOrExponent = Unit | number;
export type ExponentUnitPairs = UnitOrExponent[];
export interface SupportsEquals<Type> {
    equals(other?: Type): boolean;
}
//# sourceMappingURL=baseTypes.d.ts.map
