import React from 'react'; import { MobileNavConfig } from '../../types/navigation'; /** DOM id of the panel — referenced by the header hamburger's `aria-controls`. */ export declare const MOBILE_NAV_PANEL_ID = "mobile-nav-panel"; export interface MobileNavPanelProps { isOpen: boolean; config: MobileNavConfig; } export declare function MobileNavPanel({ isOpen, config }: MobileNavPanelProps): React.JSX.Element | null; //# sourceMappingURL=mobile-nav-panel.d.ts.map