import React from "react"; import { type LucideIcon } from "lucide-react"; interface NavItem { title: string; url: string; icon?: LucideIcon; isActive?: boolean; enabled: boolean; order: number; subItems?: { title: string; url: string; isActive: boolean; enabled: boolean; order: number; }[]; } interface NavMainProps { items: NavItem[]; } export declare const NavMain: React.NamedExoticComponent; export {};