import type { UnitBase as UnitBaseType } from './unitformat.d.mts'; type UnitFormatFunction = ( value: number, baseUnit?: string | null, prefixes?: string | null, base?: number | null, ) => string; declare const UnitFormat: UnitFormatFunction & { readonly default: UnitFormatFunction; readonly UnitFormat: UnitFormatFunction; }; declare namespace UnitFormat { type UnitBase = UnitBaseType; } export = UnitFormat;