import { ReactNode } from 'react'; import { NavbarProps } from './NavbarElements.js'; export declare type NavbarSimpleProps = NavbarProps & { action?: ReactNode; }; export declare const NavbarSimple: (props: NavbarSimpleProps) => JSX.Element;