import React from "react";
import { Props } from "./index.type";
import type { YhwFocusPictureState } from "./rule-data";
/**
 * 【RN】焦点图组件 （注意： 圆角是应用到内容中的【特殊情况】）
 */
export default class YhwFocusPictureRN extends React.Component<Props> {
    state: YhwFocusPictureState;
    /**
     * 菜单跳转逻辑
     * @param item 记录项
     */
    onItemClickImage: (index: number) => void;
    render(): React.JSX.Element;
}
