import { Team } from "../index.js"; //#region src/components/selected-team-switcher.d.ts type MockTeam = { id: string; displayName: string; profileImageUrl?: string | null; }; type SelectedTeamSwitcherProps = { urlMap?: (team: AllowNull extends true ? Team | null : Team) => string; selectedTeam?: Team; noUpdateSelectedTeam?: boolean; allowNull?: AllowNull; nullLabel?: string; onChange?: (team: AllowNull extends true ? Team | null : Team) => void; triggerClassName?: string; mockUser?: { selectedTeam?: MockTeam; }; mockTeams?: MockTeam[]; mockProject?: { config: { clientTeamCreationEnabled: boolean; }; }; }; declare function SelectedTeamSwitcher(props: SelectedTeamSwitcherProps): import("react/jsx-runtime").JSX.Element; //#endregion export { SelectedTeamSwitcher }; //# sourceMappingURL=selected-team-switcher.d.ts.map