interface FormIndicators { indicators: string; target: number | null; metricType: string; calculation: string; measuRement: string; results: string; obstacles: string; suggestions: string; } interface FormProject { isBudget: boolean; isNoPass: boolean; isOutBudget: boolean; isPassAllocate: boolean; isPassNoAllocate: boolean; project: string; } export type { FormIndicators, FormProject };