/// import './NavBarTabs.css'; interface Props { children?: any; className?: string; [attr: string]: any; } export default function NavBarTabs({ children, className, ...other }: Props): JSX.Element; export {};