import * as React from 'react'; export declare type TNavBarType = 'default' | 'paper' | 'orange'; export interface INavBarProps extends React.HTMLProps { prefixCls?: string; className?: string; titleClassName?: string; leftClassName?: string; rightClassName?: string; fixed?: boolean; type?: TNavBarType; left?: React.ReactNode; isLeftBlockVisible?: boolean; isRightBlockVisible?: boolean; right?: React.ReactNode; onLeftClick?: React.MouseEventHandler; onRightClick?: React.MouseEventHandler; }