export interface ReportAIResult { title: string; module: string; content: string; filters: Record; reportTemplate: unknown; sharedWithUsers: string[]; sharedWithGroups: string[]; threadId: string; ownerId: string; createdAt: Date; } /** * Elemento asociado a un reporte * para mostrar en listas de reportes, a la hora de visualizar reportes. */ export interface ReportAIItem { title: string; key: string; }