import React from "react";
import { Props } from "./index.type";
import type { YhwSearchBarState, YhwSearchBarData } from "./rule-data";
/**
 * 【RN】搜索栏（带定位？扫码？分类？消息？）组件
 */
export default class YhwSearchBarRN extends React.Component<Props, {}> {
    state: YhwSearchBarState;
    /**
     * 标题点击更多
     */
    onHandleMoreClick: (item: any) => void;
    /**
     * 菜单跳转逻辑
     * @param item 记录项
     */
    onJumpHandle: (item: YhwSearchBarData) => void;
    render(): React.JSX.Element;
}
