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