import { ReactNode } from "react"; import { Frame, PieChart } from "lucide-react"; export interface DashboardProfileItem { name: string; avatar: string; age: string; enabled: boolean; order: number; } export interface DashboardNavItem { title: string; url: string; icon: typeof Frame; isActive: boolean; enabled: boolean; order: number; subItems: Array<{ title: string; url: string; isActive: boolean; enabled: boolean; order: number; }>; } export interface AppItem { name: string; url: string; icon: typeof PieChart; enabled: boolean; order: number; } export interface BreadcrumbItem { label: string; href: string; } export interface DashboardProps { apps: Array; avatar: string; breadcrumbs?: Array; children?: ReactNode; clearBrowserCache?: () => void; email: string; footerNavItems: Array; handleSignOut: () => void; navItems: Array; offerUrl?: string; profiles: Array; showLanguageSelector?: boolean; username: string; } export declare const adminDashboardData: DashboardProps;