interface OneBlinkAppsTenant { awsRegion: string; loginDomain: string; apiOrigin: string; vapidPublicKey: string; intlFormats: { number: Intl.NumberFormat; currency: Intl.NumberFormat; date: Intl.DateTimeFormat; dateLong: Intl.DateTimeFormat; time: Intl.DateTimeFormat; olderIOSTime: Intl.DateTimeFormat; }; name: string; productShortName: string; distanceUnit: string; distanceUnitShortName: string; } declare class Tenants { tenant: 'oneblink' | 'civicplus' | 'oneblinkUS'; constructor(); get isTestEnvironment(): boolean; get current(): OneBlinkAppsTenant; get locale(): "en-AU" | "en-US"; useOneBlink(): void; useOneBlinkUS(): void; useCivicPlus(): void; } declare const _default: Tenants; export default _default;