/// <reference types="react" />
export declare enum UserProfileLinksTabs {
    PROJECTS = "Projects",
    TEAMS = "Teams",
    CHALLENGES = "Challenges"
}
declare type UserProfileLinksProps = {
    userId: string;
};
declare function UserProfileLinks({ userId, }: UserProfileLinksProps): JSX.Element;
export default UserProfileLinks;
