@bytedance/mona-client-web
Version:
web for mona
14 lines (13 loc) • 358 B
TypeScript
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 {};