/** * 2025年元旦、春节、清明节、劳动节、端午节、中秋节和国庆节放假调休日期 * https://www.gov.cn/zhengce/zhengceku/202411/content_6986383.htm */ declare const holidaysOf2025: string[]; /** * 2025年,休息日上班日期 */ declare const workdaysOf2025: string[]; export { holidaysOf2025, workdaysOf2025 };