export declare class Props {
    /**
     * 导航对象
     */
    navigation?: any;
    /**
     * 用户信息对象
     */
    userInfo?: any;
    /**
     * 数据集合， H5是JSON对象，RN是JSON的字符串
     */
    dataInfo?: any;
    /**
     * 图片适配时的缩放方式：| 'cover' | 'contain' | 'stretch' | 'repeat' | 'center'
     */
    resize?: string;
    /**
     * 点击更多按钮
     */
    onMoreClick?: (close?: () => any) => void;
}
