type ProfileVariant = 'default' | 'company' | 'gamer'; type ProfileTab = 'projects' | 'activity' | 'teams'; interface Props { variant?: ProfileVariant; initialTab?: ProfileTab; columns?: 2 | 3; } declare const PublicProfilePage: import("svelte").Component; type PublicProfilePage = ReturnType; export default PublicProfilePage;