import { ComponentClass } from 'react'; import CompCommon, { IconBaseProps } from '../../common/type'; export interface NavBarProps extends CompCommon { title?: string; fixed?: boolean; border?: boolean; color?: string; leftIcon?: boolean; leftIconType?: string | IconBaseProps; leftText?: string; rightIconType?: string | IconBaseProps; onClickLeft?: Function; onClickRight?: Function; } declare const NavBar: ComponentClass; export default NavBar;