/**
 * Gets day count of month.
 */
export declare const getDayCount: (date: Date) => number;
/**
 * Gets first year of decade.
 */
export declare const getDecade: (date: Date) => number;
/**
 * Checks if year is leap year.
 */
export declare const isLeapYear: (date: Date) => boolean;
