import * as React from 'react'; import type { User } from './type'; interface UserProfileUIProps { user: User; } export declare function UserProfileUI({ user }: UserProfileUIProps): React.JSX.Element; export {};