export interface UserInfoData {
    id?: number;
    avatar?: string;
    nick?: string;
    gradeDescription?: string;
}
export declare class Props {
    /**
     * 导航对象
     */
    navigation?: any;
    /**
     * 数据集合， H5是JSON对象，RN是JSON的字符串
     */
    dataInfo?: any;
    /**
     * 用户信息， H5是JSON对象，RN是JSON的字符串
     */
    userInfo?: UserInfoData;
    /**
     * 点击更多按钮
     */
    onMoreClick?: (close?: () => any) => void;
}
