import React from "react"; interface Medium { id: string; name: string; imageUrl?: string; } interface Terreiro { id: string; name: string; imageUrl?: string; badgeTier?: "STARTER" | "BASIC" | "ACTIVE" | "VERIFIED"; completenessScore?: number; } interface MyAccountPageProps { medium: Medium; terreiro: Terreiro; onClose: () => void; onSelectMedium: () => void; onSelectTerreiro: () => void; } declare const MyAccountPage: React.FC; export default MyAccountPage;