import { TenantTypeEnums } from '../enums/unitySystemEnums'; interface TenantView { tenantId: string; name: string | null | undefined; tenantType: TenantTypeEnums; theme?: string | null; } interface TenantState { currentTenant: TenantView | null | undefined; setCurrentTenant: (currentTenant: TenantView) => void; isProductTenant: boolean; } export declare const useTenantStore: () => TenantState; export {}; //# sourceMappingURL=tenantStore.d.ts.map