import type { DimensionPercentageFor_LengthValue, Length, LengthValue } from 'lightningcss'; import type { ProcessorBuilder } from './processor'; export declare class Units { private readonly Processor; private readonly logger; constructor(Processor: ProcessorBuilder); processLength(length: LengthValue | DimensionPercentageFor_LengthValue | number): any; processAnyLength(length: DimensionPercentageFor_LengthValue | Length | LengthValue): any; replaceInfinity(value: any): any; }