import type { Unit } from '@zakodium/nmrium-core'; export declare const units: ({ name: string; unit: "px"; } | { name: string; unit: "in"; } | { name: string; unit: "ft"; } | { name: string; unit: "yd"; } | { name: string; unit: "cm"; } | { name: string; unit: "mm"; } | { name: string; unit: "m"; } | { name: string; unit: "pt"; } | { name: string; unit: "pc"; })[]; interface ConvertOptions { precision?: number; } export declare function convertToPixels(value: number, unit: Unit, dpi: number, options?: ConvertOptions): number; export declare function convert(value: number, fromUnit: Unit, toUnit: Unit, dpi: any, options?: ConvertOptions): number; export {}; //# sourceMappingURL=units.d.ts.map