import type { ComponentType } from "react"; export interface Category { id: string; name: string; icon: ComponentType<{ size?: number; className?: string; }>; subcategories?: SubCategory[]; } export interface SubCategory { id: string; name: string; icon?: ComponentType<{ size?: number; className?: string; }> | string | { displayName?: string; }; } //# sourceMappingURL=sidebar-minimal.d.ts.map