import { RecursivePartial } from '../typings'; import { INavbar } from '../blocks'; import { MjmlBlockProps } from '../components/MjmlBlock'; export declare type NavbarProps = RecursivePartial & RecursivePartial & { children?: MjmlBlockProps['children']; }; export declare function Navbar(props: NavbarProps): JSX.Element;