import * as React from 'react'; export interface NavBarProps { prefixCls?: string; className?: string; style?: React.CSSProperties; leftIcon?: React.ReactNode; leftContent: React.ReactNode; onLeftClick?: () => void; close?: boolean; closeContent?: React.ReactNode; onCloseClick?: () => void; rightContent: React.ReactNode; share?: React.ReactNode; onRightClick?: () => void; } export default class NavBar extends React.PureComponent { static defaultProps: { prefixCls: string; style: {}; leftIcon: JSX.Element; closeContent: string; onLeftClick: () => null; onCloseClick: () => null; onRightClick: () => null; }; render(): JSX.Element; }