export interface DashboardMockupProps { domain: string; enrollmentHeading: string; enrollmentList: { name: string; class: string; status: string; }[]; items: { icon: React.ElementType; label: string; active: boolean; }[]; schoolName: string; stats: { label: string; value: string; color: string; }[]; } export declare const dashboardMockupMenuList: DashboardMockupProps; export interface FeatureCardsProps { items: { icon: React.ElementType; title: string; description: string; highlights: string[]; href: string; accent: string; bg: string; }[]; } export declare const featureCards: FeatureCardsProps;