interface FormQueryRound {
page: number;
pageSize: number;
year: number;
keyword: string;
}
interface FormRound {
durationKPI: string;
startDate: Date | null;
endDate: Date | null;
export type { FormQueryRound, FormRound };