import { Team } from "../lib/stack-app/teams/index.js"; import * as react_jsx_runtime0 from "react/jsx-runtime"; //#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): react_jsx_runtime0.JSX.Element; //#endregion export { SelectedTeamSwitcher }; //# sourceMappingURL=selected-team-switcher.d.ts.map