import * as react_jsx_runtime0 from "react/jsx-runtime"; import { Team } from ".."; //#region src/components/team-switcher.d.ts type MockTeam = { id: string; displayName: string; profileImageUrl?: string | null; }; type TeamSwitcherProps = { team?: Team; teamId?: string; teams?: Team[]; allowNull?: AllowNull; nullLabel?: string; triggerClassName?: string; onChange?: (team: AllowNull extends true ? Team | null : Team) => Promise; mockUser?: { team?: MockTeam; }; mockTeams?: MockTeam[]; mockProject?: { config: { clientTeamCreationEnabled: boolean; }; }; }; declare function TeamSwitcher(props: TeamSwitcherProps): react_jsx_runtime0.JSX.Element; //#endregion export { TeamSwitcher }; //# sourceMappingURL=team-switcher.d.ts.map