/// import React from 'react'; import NavBarProps from './PropsType'; export default class NavBar extends React.Component { static defaultProps: { prefixCls: string; mode: string; iconName: string; onLeftClick(): void; }; render(): JSX.Element; }