/** Converts a given value from an input unit to an output unit. */ export declare function convertUnits( /** Input value */ value: number, /** Unit for the input value to start the conversion from. */ inputUnit: T | string, /** Unit for the output value. */ outputUnit: T | string, /** Conversion table to be used as mapping */ conversionTable: Array<{ multiplier: number; postfix: T | string; }>): number;