import React from "react";
import { Props } from "./index.type";
import type { YhwFocusPictureState } from "./rule-data";
export default class YhwFocusPictureRN extends React.Component<Props> {
    state: YhwFocusPictureState;
    /**
     * 菜单跳转逻辑
     * @param item 记录项
     */
    onItemClickImage: (index: number) => void;
    render(): React.JSX.Element;
}
