interface FormData { complaint: string; complaintdetail: string; detail: string; fault: string; other: string; evidenceFiles: File | null; fileComplaint: File | null; clickTime: boolean; date: Date | null; dateEnd: Date; daysExtend: number | null; investigation: string; statusResult: string; causeText: string; complaintStatus:string reason: string } interface MyObjectInvestigateRef { complaint: object | null; complaintdetail: object | null; detail: object | null; fault: object | null; evidenceFiles: object | null; fileComplaint: object | null; date: object | null; dateEnd: object | null; investigation: object | null; daysExtend: object | null; statusResult: object | null; causeText: object | null; reason: object | null; [key: string]: any; } export type { FormData, MyObjectInvestigateRef };