import { WebComponentProps } from 'oak-frontend-base'; import { EntityDict } from '../../../oak-app-domain'; type DataProps = { visible: boolean; nickname: string; name: string; birth: string; gender: string; mobile: string; avatarUrl: string; attr: string; genderOptions: Array<{ label: string; value: string; }>; attrs: Record; id: string; refreshing: boolean; isSupportSyncWeChat: boolean; appId: string; }; type MethodsProps = { goAddMobile: () => void; goChangePassword: () => void; setAvatar: () => void; setVisible: (visible: boolean, attr: string) => void; setCustomData: (attr: string, value: string | number) => void; onConfirm: (attr: string) => Promise; refreshWechatPublicUserInfo: () => void; }; export default function render(props: WebComponentProps): import("react/jsx-runtime").JSX.Element; export {};