import { CounterStyleRangeProperty, CounterStyleSpeakAsProperty, CounterStyleSystemProperty } from "./index"; export interface CounterStyleFallback { additiveSymbols?: string | string[]; fallback?: string | string[]; negative?: string | string[]; pad?: string | string[]; prefix?: string | string[]; range?: CounterStyleRangeProperty | CounterStyleRangeProperty[]; speakAs?: CounterStyleSpeakAsProperty | CounterStyleSpeakAsProperty[]; suffix?: string | string[]; symbols?: string | string[]; system?: CounterStyleSystemProperty | CounterStyleSystemProperty[]; }