import type { Snippet } from 'svelte'; import type { Tenant } from '../types.js'; type $$ComponentProps = { tenants: Tenant[]; currentTenantId?: string; collapsed?: boolean; onSwitch?: (tenantId: string) => void; headerSnippet?: Snippet; }; declare const TenantSwitcher: import("svelte").Component<$$ComponentProps, {}, "currentTenantId">; type TenantSwitcher = ReturnType; export default TenantSwitcher;