import React from "react";
import { Props } from "./index.type";
import type { YhwUserStatusState } from "./rule-data";
/**
 * 【RN】用户的状态（未登录、登录）组件
 */
export default class YhwUserStatusRN extends React.Component<Props, {}> {
    state: YhwUserStatusState;
    /**
     * 标题点击更多
     */
    onHandleMoreClick: (item: any) => void;
    /**
     * 菜单跳转逻辑
     * @param item 记录项
     */
    onJumpHandle: (item: any) => void;
    render(): React.JSX.Element;
}
