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