import { ViewProps } from 'remax/one'; import React from 'react'; export interface GetUserInfoData { encryptedData?: string; errMsg?: string; iv?: string; rawData?: string; signature?: string; userInfo?: string; } export interface Props extends React.PropsWithChildren { type: 'getUserInfo'; onGetUserInfo?: (data: GetUserInfoData) => void; } declare const _default: ({ children, type, ...props }: Props) => React.JSX.Element; export default _default;