export interface Document { id: string; title: string; type: 'DOSSIER' | 'PDF'; date: string; size?: string; isFolder: boolean; filePath?: string; path?: string; children?: Document[]; }