export declare enum Unit { pixels = "Pixels", percent = "Percent", rem = "Rem", ms = "Ms", raw = "Raw" } export declare const SIZE_UNITS: readonly [Unit.pixels, Unit.percent, Unit.rem]; export type SizeUnit = (typeof SIZE_UNITS)[number]; export declare const LINE_HEIGHT_UNITS: readonly [Unit.pixels, Unit.percent, Unit.rem, Unit.raw]; export type LineHeightUnit = (typeof LINE_HEIGHT_UNITS)[number]; export declare const RAW_UNITS: readonly [Unit.raw]; export type RawUnit = (typeof RAW_UNITS)[number]; export declare const PX_UNITS: readonly [Unit.pixels]; export type PxUnit = (typeof PX_UNITS)[number]; export declare const MS_UNITS: readonly [Unit.ms]; export type MsUnit = (typeof MS_UNITS)[number];