/** * Get the number of days in the year of a given date. * * Leap years have 366 days, otherwise 365. */ export declare function daysInYear({ year }: { year: number | string; }): number; //# sourceMappingURL=daysInYear.d.ts.map