import { ICONS } from "../.."; import { ReactNode } from "react"; interface menuItem extends React.DetailedHTMLProps, HTMLDivElement> { title: string; href?: string; } declare function Container({ title, children, button, mobile, }: { title: ReactNode; children: ReactNode; button: ReactNode; mobile: { title: string; icon: ICONS; path: string; onClick?: boolean; }[]; }): JSX.Element; export declare const NavbarPrimary: { MenuItem: ({ title, children, href, ...props }: menuItem) => JSX.Element; SubItem: ({ title, subTitle, href, icon, }: { title: string; subTitle: string; href: string; icon?: ICONS | undefined; }) => JSX.Element; Container: typeof Container; }; export {};