import { FC, ReactNode } from "react"; export interface NavbarMobileProps { children: ReactNode; } export interface keepMobileMenuTheme { base: string; open: { on: string; off: string; }; close: string; } export declare const NavbarMobile: FC;