export interface OrgItem { id: string; name: string; plan?: string; initials?: string; /** Soft accent for the avatar tile */ tone?: 'brand' | 'sky' | 'emerald' | 'amber' | 'rose'; } interface OrgSwitcherProps { orgs?: OrgItem[]; value?: string; /** Compact trigger for sidebars */ compact?: boolean; class?: string; onchange?: (id: string) => void; oncreate?: () => void; } declare const OrgSwitcher: import("svelte").Component; type OrgSwitcher = ReturnType; export default OrgSwitcher;