import type { PropsFor } from "../../types.js"; export type NavMobileProps = PropsFor<"nav", { /** Callback for overlay click. Overlay is only rendered if a callback is supplied */ onOverlayClick?: (event: React.MouseEvent) => void; /** @deprecated since 6.2 */ hideBranding?: boolean; }>; declare const NavMobile: import("react").ForwardRefExoticComponent>; export default NavMobile;