/** * Tenancy Module Svelte Components * * Optional Svelte UI components for tenant management. * Auto-registers components with ModuleUIRegistry on import. * * @packageDocumentation */ import type { ComponentProps } from 'svelte'; import TenantCard from './components/TenantCard.svelte'; import TenantSwitcher from './components/TenantSwitcher.svelte'; export { TenantCard, TenantSwitcher }; export type TenantCardProps = ComponentProps; export type TenantSwitcherProps = ComponentProps; //# sourceMappingURL=index.d.ts.map