import { TenantSubscription, TokenPrefix } from "../types"; export interface ISessionStorageHelper { GetCurrentTenantId(): string; SetCurrentTenantId(input: string): void; GetCurrentTenantAdminPublicId(): string; SetCurrentTenantAdminPublicId(): string; GetToken(prefix: TokenPrefix): Promise; SetToken(prefix: TokenPrefix, input: string): void; GetTenantSubscriptions(): Promise; GetTenantSubscriptionName(subscriptionId: number): string; GetPriceDecimalsAmount(): number; SetPriceDecimalsAmount(amount: number): void; } //# sourceMappingURL=iSessionStorageHelper.d.ts.map