import type { SupabaseClient } from "@supabase/supabase-js"; import type { Database } from "../types/database.types"; import type { User } from '@supabase/supabase-js'; type UserProfileProps = { user: User; supabase: SupabaseClient; defaultAvatarUrl?: string; }; export default function UserProfile({ user, supabase, defaultAvatarUrl, }: UserProfileProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=UserProfile.d.ts.map