import type dayjs from 'dayjs'; /** * Skips the holiday period between the start and due dates. * @param start The start date. * @param due The due date. * @returns An object containing the updated start and due dates. */ export declare function skipHolidayPeriod(start: dayjs.Dayjs, due: dayjs.Dayjs): { startDate: dayjs.Dayjs; dueDate: dayjs.Dayjs; };