interface DataOption { id: string; name: string; } interface DataOptionCheckBox { label: string; value: string; } interface FormFilter { page: number; pageSize: number; keyword: string; type: string; year:number posType: string; posLevel: string; retireYear: string | null; rangeYear: { min: number; max: number }; isShowRetire: boolean | null; isProbation: boolean | null; } export type { DataOption, DataOptionCheckBox,FormFilter };