import type { FC, ReactNode, Ref } from 'react'; export interface ScopeSwitcherItem { id: string; label: string; description?: string; href: string; } export interface BreadcrumbsScopeSwitcherProps { ref?: Ref; value: string; items: ScopeSwitcherItem[]; onSelect: (item: ScopeSwitcherItem) => void; children: ReactNode; className?: string; /** @internal - set automatically by parent */ isCurrent?: boolean; } export declare const BreadcrumbsScopeSwitcher: FC;