interface DataOption { id: string; name: string; } interface investigatefactsDataRowType { subject: string; interrogated: string; fault: string|undefined; status: string|undefined; active: string|undefined; } interface investigateDisDataRowType { subject: string; interrogated: string; fault: string; penaltyLevel: string; caseFault: string; dateInvestigate: string; status: string; active: string; } interface directorType { nameDirector: string; position: string; duty: string; email: string; telephone: string; } export type { DataOption, investigatefactsDataRowType, investigateDisDataRowType, directorType, };