import React from "react"; import { NavItem } from "../../data/appcorp-v1"; interface DropdownPanelProps { item: NavItem; onClose: () => void; } export declare const DropdownPanel: ({ item, onClose }: DropdownPanelProps) => React.JSX.Element | null; export {};