import { Unit } from "../index"; export declare class Formatter { static resultToString(result: number, inputValue: number, inputUnit: Unit, outputUnit: Unit): string; static resultTofixed(result: number, toFixed: number): number; static resultToPretty(result: number, inputValue: number, toFixed: number): string; private static getNumberDecimals(inputValue, toFixed); }