import { Month } from "../enum/month.enum"; /** * Get the current date * @returns */ export declare function getCurrentDate(): Date; /** * Create a date * @param year * @param month * @param day * @returns */ export declare function createDate(year: number, month: Month, day: number): Date; /** * Create a date with the provided ISO date string * @param isoDate * @returns */ export declare function createDateFromIso(isoDate: string): Date; /** * Add days to the provided date * @param date * @param days * @returns */ export declare function addDays(date: Date, days: number): Date; /** * Add days to current date * @param days */ export declare function addDaysToCurrentDate(days: number): Date; /** * Add months to the provided date * @param date * @param days * @returns */ export declare function addMonths(date: Date, months: number): Date; /** * Add months to the current date * @param months * @returns */ export declare function addMonthsToCurrentDate(months: number): Date; /** * Helper method for transforming object to ISO date * @param body */ export declare function transformToISODate(body?: any): void;