import React from "react";
import { Props } from "./index.type";
import type { YhwFocusProductState } from "./rule-data";
/**
 * 【RN】焦点产品组件（多个产品根据配置分组后输出）
 */
export default class YhwFocusProductRN extends React.Component<Props> {
    state: YhwFocusProductState;
    /**
     * 标题点击更多
     */
    onHandleMoreClick: (item: any) => void;
    /**
     * 菜单跳转逻辑
     * @param item 记录项
     */
    onJumpHandle: (item: any) => void;
    render(): React.JSX.Element;
}
