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 | undefined; penaltyLevel: string | undefined; caseFault: string | undefined; dateInvestigate: string | undefined; status: string | undefined; active: string | undefined; } interface directorType { nameDirector: string; position: string; duty: string; email: string; telephone: string; } export type { DataOption, investigatefactsDataRowType, investigateDisDataRowType, directorType, };