export type UnitType = 'm' | 'mm' | 'cm' | 'ft' | 'in' | 'pt';
export interface Options {
    unit?: UnitType;
    precision?: number;
}
