// File: src/types/export-settings.ts export interface IExportSettings { showExcel?: boolean; showPDF?: boolean; showImage?: boolean; showCSV?: boolean; excel?: boolean; pdf?: boolean; image?: boolean; csv?: boolean; }