import type UnitType from './unit-type.js'; interface HasUnitType { unitType: UnitType; } declare const deprecationWarning: (message: string) => void; export declare const maybeReportDifferentTypesDeprecated: (num: HasUnitType, otherNum: HasUnitType, operation: string) => void; export default deprecationWarning;