export interface Category { _id: string; name: string; parentId?: string; children?: Category[]; classifications?: any[]; }