export type ChallengeTeamTableProps = {
    challengeId: string;
    selectedTeamId?: string;
    onSelectTeam: (teamId?: string) => void;
};
/**
 * Table component that displays teams that
 *  1. are registered for the challenge specified by the challengeId prop
 *  2. the current user is able to join, create a request to join, or accept an invitation to join
 */
export default function ChallengeTeamTable(props: ChallengeTeamTableProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=ChallengeTeamTable.d.ts.map