declare type DomainName = "hitobit" | "poolkhord" | "mock"; declare class URLManager { private static domainName; private static PREFIX_DEV; private static PREFIX_STAGE; private static PREFIX_TEST_STAGE; private static PREFIX_TESTNET; private static PREFIX_TESTDEV; private static get API_DEV(); private static get API_STAGE(); private static get API_STAGE_TEST(); private static get API_TESTNET(); private static get API_TESTDEV(); private static get API_PRODUCTION(); private static get CDN_DEV(); private static get CDN_STAGE(); private static get CDN_STAGE_TEST(); private static get CDN_TESTNET(); private static get CDN_TESTDEV(); private static get CDN_PRODUCTION(); private static get SIGNALR_DEV(); private static get SIGNALR_STAGE(); private static get SIGNALR_STAGE_TEST(); private static get SIGNALR_TESTNET(); private static get SIGNALR_TESTDEV(); private static get SIGNALR_PRODUCTION(); static setCustomPrefixes({ dev, stage, testStage, testnet, testdev, }: { dev: string; stage: string; testnet: string; testdev: string; testStage: string; }): void; static setDomainName(domainName: DomainName): void; static getDomainName(): DomainName; static get baseUrl(): string; static get signalRBaseUrl(): string; static get CDNBaseUrl(): string; } export { URLManager }; //# sourceMappingURL=urls.d.ts.map