import { Sized, Unit } from "../language/builtin/lib/sized.js"; export declare const Multipliers: Record; /** * Converts a sized value from its current unit to a target unit. * * @param sized - The object containing the size and its original unit. * @param unit - The unit to convert the size to. * @returns The size value converted to the target unit. */ export declare const ToUnits: (sized: Sized, unit: Unit) => Sized;