import type { TwConfig } from './tw-config'; import type { StyleIR, DeviceContext, Version } from './types'; import type Cache from './cache'; export default class UtilityParser { private config; private cache; private position; private string; private char?; private order?; private isNull; private isNegative; private context; constructor(input: string, config: TwConfig, cache: Cache, device: DeviceContext, reactNativeVersion: Version); parse(): StyleIR; private parseUtility; private handlePossibleArbitraryBreakpointPrefix; private advance; private get rest(); private peekSlice; private consumePeeked; private parsePrefixes; private parseIsNegative; private incrementOrder; }