import { UnitOfMeasurementType } from "@trackunit/iris-app-runtime-core-api"; export type UnitType = UnitOfMeasurementType | undefined | null; /** * Returns the translation for a unit. */ export declare const useUnitTranslation: () => { unitTranslation: (unit: UnitType) => string | null; };