import React from "react"; interface UserProfileComponentProps { apiBaseUrl: string; showFullDetails?: boolean; onProfileUpdated?: () => void; } export declare const UserProfileComponent: React.FC; export {};