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