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