declare const AbsoluteLengthUnitSuffix: { readonly Pixel: "px"; readonly Centimeter: "cm"; readonly Millimeter: "mm"; readonly Quarter: "Q"; readonly Inch: "in"; readonly Pica: "pc"; readonly Point: "pt"; }; export declare type AbsoluteLengthUnitSuffix = typeof AbsoluteLengthUnitSuffix[keyof typeof AbsoluteLengthUnitSuffix]; declare const RelativeLengthUnitSuffix: { readonly REM: "rem"; readonly EM: "em"; readonly ViewWidth: "vw"; readonly ViewHeight: "vh"; readonly ViewMin: "vmin"; readonly ViewMax: "vmax"; }; export declare type RelativeLengthUnitSuffix = typeof RelativeLengthUnitSuffix[keyof typeof RelativeLengthUnitSuffix]; declare const MultiplicationUnitSuffix: { readonly Percent: "%"; readonly Magnification: ""; }; export declare type MultiplicationUnitSuffix = typeof MultiplicationUnitSuffix[keyof typeof MultiplicationUnitSuffix]; declare const LengthUnitSuffix: { REM: "rem"; EM: "em"; ViewWidth: "vw"; ViewHeight: "vh"; ViewMin: "vmin"; ViewMax: "vmax"; Pixel: "px"; Centimeter: "cm"; Millimeter: "mm"; Quarter: "Q"; Inch: "in"; Pica: "pc"; Point: "pt"; }; export declare type LengthUnitSuffix = typeof LengthUnitSuffix[keyof typeof LengthUnitSuffix]; export declare const UnitSuffix: { Percent: "%"; Magnification: ""; REM: "rem"; EM: "em"; ViewWidth: "vw"; ViewHeight: "vh"; ViewMin: "vmin"; ViewMax: "vmax"; Pixel: "px"; Centimeter: "cm"; Millimeter: "mm"; Quarter: "Q"; Inch: "in"; Pica: "pc"; Point: "pt"; }; export declare type UnitSuffix = typeof UnitSuffix[keyof typeof UnitSuffix]; export declare type Unit = `${number}${Suffix}`; export declare type ConvertLengthUnitArgsOptions = { rem?: Element | Unit<'px'>; em?: Element | Unit<'px'>; viewWidth?: Unit<'px'>; viewHeight?: Unit<'px'>; }; export {}; //# sourceMappingURL=defs.d.ts.map