import React from "react";
import { Props } from "./index.type";
import type { YhwFloorPictureState } from "./rule-data";
export default class YhwFloorPictureRN extends React.PureComponent<Props, {}> {
    state: YhwFloorPictureState;
    componentDidMount(): Promise<void>;
    UNSAFE_componentWillReceiveProps(nextProps: Props): Promise<void>;
    /**
     * 根据权限，计算是否显示
     * @param dataUser 用户的信息对象
     */
    calcIsByShowPower: (dataUser: any) => Promise<boolean>;
    /**
     * 标题点击更多
     */
    onHandleMoreClick: (item: any) => void;
    /**
     * 菜单跳转逻辑
     * @param item 记录项
     */
    onJumpHandle: (item: any) => void;
    render(): any;
}
