/** * Get the number of days in the month for a given date. * * February has 29 days in a leap year, otherwise 28. */ export declare function daysInMonth({ year, month }: { year: number | string; month: number | string; }): number; //# sourceMappingURL=daysInMonth.d.ts.map