export interface Class { id: string; name: string; icon?: string; attributes: Attribute[]; } export interface Attribute { id: string; name: string; field: string; category?: string; multiValued: boolean; } export interface BusinessData { name: string; count: number; date: string; icon?: string; }