export type UnknownMap = Record; export type Translation = { translation: string; context?: string }; export type LanguageMap = Record; export type CountryInfoMap = Record; export interface CountryInfo { code: string; currency: string; currency_fraction?: string; currency_fraction_units?: number; smallest_currency_fraction_value?: number; currency_symbol?: string; timezones?: string[]; fiscal_year_start: string; fiscal_year_end: string; locale: string; } export interface VersionParts { major: number; minor: number; patch: number; beta?: number; } export type Creds = { errorLogUrl: string; telemetryUrl: string; tokenString: string };