import React from 'react'; export interface IUserMenu { fullName: string; membership: string; profileImage: string; logoutUrl: string; className?: string; winByReferralLink?: string; theme?: 'light' | 'dark'; [x: string]: any; } export declare const UserMenu: React.FC;