export interface IAppConsts { readonly tenancyNamePlaceHolderInUrl: string; remoteServiceBaseUrl: string; remoteServiceBaseUrlFormat: string; appBaseUrl: string; appBaseHref: string; appBaseUrlFormat: string; recaptchaSiteKey: string; subscriptionExpireNootifyDayCount: number; localeMappings: any[]; readonly userManagement: any; readonly localization: any; readonly authorization: any; readonly grid: any; readonly Routs: any; } export declare class SharedAppConsts implements IAppConsts { static instance(): IAppConsts; private SharedAppConsts; tenancyNamePlaceHolderInUrl: string; remoteServiceBaseUrl: string; remoteServiceBaseUrlFormat: string; appBaseUrl: string; appBaseHref: string; appBaseUrlFormat: string; recaptchaSiteKey: string; subscriptionExpireNootifyDayCount: number; localeMappings: any; readonly userManagement: { defaultAdminUserName: string; }; readonly localization: { defaultLocalizationSourceName: string; }; readonly authorization: { encrptedAuthTokenName: string; }; readonly grid: { defaultPageSize: number; }; readonly Routs: { EmailTemplates: string; EmailTemplateList: string; }; } export declare class AppConsts { static tenancyNamePlaceHolderInUrl: string; static remoteServiceBaseUrl: string; static remoteServiceBaseUrlFormat: string; static appBaseUrl: string; static appBaseHref: string; static appBaseUrlFormat: string; static recaptchaSiteKey: string; static subscriptionExpireNootifyDayCount: number; static localeMappings: any; static readonly userManagement: { defaultAdminUserName: string; }; static readonly localization: { defaultLocalizationSourceName: string; }; static readonly authorization: { encrptedAuthTokenName: string; }; static readonly grid: { defaultPageSize: number; }; static readonly Routs: { EmailTemplates: string; EmailTemplateList: string; }; }