/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ /** * Manages the month displayed by a calendar-style component. * The month is always normalised to the first day of the month. * * @param defaultMonth The month shown initially. */ export declare const useMonthNavigation: (defaultMonth: Date) => { goToNextMonth: () => void; goToNextYear: () => void; goToPreviousMonth: () => void; goToPreviousYear: () => void; month: Date; setMonth: (date: Date) => void; };