import React from 'react'; export interface UserProfileProps { prefix?: string; className?: string; style?: React.CSSProperties; userId: string; } declare const UserProfileOut: ((props: UserProfileProps) => import("react/jsx-runtime").JSX.Element) & { displayName: string; }; export default UserProfileOut;