export interface FileInfo { name: string; url: string; label?: string; type?: string; category?: string; category_icon?: string; } export interface ExportItem { label: string; hint?: string; disabled?: boolean; on_download?: () => void; copy_text?: () => string | null; show_dpi?: boolean; } export interface ExportSection { title?: string; tooltip?: string; items: ExportItem[]; }