import type { BusinessUnit } from "../Foundry/types"; interface TeamSwitcherBarProps { teams: BusinessUnit[]; selectedTeam: BusinessUnit; onTeamChange: (team: BusinessUnit) => void; onDashboardClick?: () => void; className?: string; } export declare function TeamSwitcherBar({ teams, selectedTeam, onTeamChange, onDashboardClick, className, }: TeamSwitcherBarProps): import("react/jsx-runtime").JSX.Element; export {};