import * as React from 'react'; import { Me } from '../api/endpoint.js'; import { WidgetRootDomProps } from './utils.js'; import '@tanstack/react-query'; import '../api/widgets-api-client.js'; import './elements.js'; import '@radix-ui/themes'; import '@radix-ui/themes/props'; import '../dialog-CGXwsXVe.js'; import '@radix-ui/themes/components/dialog'; import '../alert-dialog-BMbVcJfZ.js'; import '@radix-ui/themes/components/alert-dialog'; import '../dropdown-menu-BQ5LtvdR.js'; import '@radix-ui/themes/components/dropdown-menu'; import '../select-KR89Qnvm.js'; import '@radix-ui/themes/components/select'; interface UserProfileProps extends WidgetRootDomProps { userData: Me; } declare const UserProfile: React.FC; interface UserProfileLoadingProps extends WidgetRootDomProps { } declare const UserProfileLoading: React.FC; interface UserProfileErrorProps extends WidgetRootDomProps { error: unknown; } declare const UserProfileError: React.FC; export { UserProfile, UserProfileError, type UserProfileErrorProps, UserProfileLoading, type UserProfileLoadingProps, type UserProfileProps };