import type { UnitType } from './types'; export type UnitMap = Record<UnitType, number>; export interface Term { value: number; units: UnitMap; } export type CSSNumericSumValue = Term[]; //# sourceMappingURL=CSSNumericSumValue.d.ts.map