import * as React from 'react'; interface INavContext { name: string; logo?: React.ElementType; logoUrl?: string; text: string; active?: boolean; className?: string; } declare function ContextSwitcher({ items, title, newContextText, canAdd, onContextAdd, onContextSelected, }: { items: INavContext[]; title?: string; newContextText?: string; canAdd?: boolean; onContextAdd?: () => void; onContextSelected?: (context: INavContext) => void; }): React.JSX.Element; export { ContextSwitcher, type INavContext };