import { CardProps } from '@heroui/react'; export interface UserProfileProps { className?: string; variant?: CardProps["variant"]; } /** * Render a profile card that lets the authenticated user view and update their * display name, avatar, and any plugin- or user-supplied additional fields. */ export declare function UserProfile({ className, variant }: UserProfileProps): import("react").JSX.Element;