import React, { FC } from 'react';
import './index.module.less';
interface NavBarProps {
    left?: React.ReactNode;
    right?: React.ReactNode;
    title: string | React.ReactNode;
    onLeftClick?: () => void;
    onRightClick?: () => void;
    onTitleClick?: () => void;
    className?: string;
}
export declare const NavBar: FC<NavBarProps>;
export {};
