/**
 * 获取当前月份的开始时间和结束时间
 */
declare function getMonthBounds(value: string | number | Date): [Date, Date];
declare function getMonthBounds(value: string | number | Date, fmt: string): [string, string];

export { getMonthBounds };
