import type { FC } from 'react';
import './Nav.less';
interface NavProps {
    left?: string;
    title?: string;
    right?: string;
    onLeftClick?: () => void;
    onRightClick?: () => void;
}
declare const Nav: FC<NavProps>;
export default Nav;
