export interface UserProfileProps { onChangePassword?: () => void; onProfile?: () => void; onLogout?: () => void; /** URL to redirect to for login (default: /account/login) */ loginUrl?: string; } export declare const UserProfile: ({ onChangePassword, onProfile, onLogout, loginUrl }: UserProfileProps) => import("react/jsx-runtime").JSX.Element;