import React from 'react'; import XBaseLayout, { XBaseLayoutProps } from "../base/XBaseLayout"; import { NavBarProps } from "./nav/NavBar"; export interface XNavBarProps extends XBaseLayoutProps, NavBarProps { } /** * 包含返回的导航栏,一般在手机页面的最上面 * @name 导航栏 * @groupName 折叠显示 */ export default class XNavBar extends XBaseLayout { static ComponentName: string; static defaultProps: { lazyChildren: boolean; styleType: string; hasBox: boolean; showBorder: any; overflow: string; boxStyle: {}; width: string; height: string; visible: boolean; grid: number[]; gridSpan: number[]; parent: string; pureRender: boolean; dataSourceUrl: string; filterData: {}; mustHasFilter: boolean; }; constructor(props: XNavBarProps); render(): React.JSX.Element; }