@dbs-portal/module-tenant-management
Version:
Tenant management and multi-tenancy support module
21 lines • 663 B
TypeScript
/**
* TenantSwitcher Component - Multi-tenant context switcher
*/
import React from 'react';
import type { TenantSwitcherProps } from '../types';
export declare const TenantSwitcher: React.FC<TenantSwitcherProps>;
/**
* Compact version for headers/toolbars
*/
export declare const CompactTenantSwitcher: React.FC<Omit<TenantSwitcherProps, 'showSearch' | 'showCreateButton'>>;
/**
* Full version for dashboards/main areas
*/
export declare const FullTenantSwitcher: React.FC<TenantSwitcherProps>;
/**
* Tenant indicator (read-only)
*/
export declare const TenantIndicator: React.FC<{
className?: string;
}>;
//# sourceMappingURL=TenantSwitcher.d.ts.map