import type { FC, ReactNode } from 'react'; export interface UserInfoProps { userData: string; className?: string; leftIcon?: ReactNode; showLeftIcon?: boolean; onLeftIconClick?: () => void; rightIcon?: ReactNode; showRightIcon?: boolean; onRightIconClick?: () => void; } export declare const UserInfo: FC;