/** * Makes sure the month is within the min and max daterange to avoid showing disabled months * @note We do not warn the user if start > end now */ declare const clampDisplayMonth: ({ month, start, end, }: { month?: Date; start?: Date; end?: Date; }) => Date | undefined; /** * Makes sure the month is within the min and max daterange to avoid showing disabled months * @note We do not warn the user if start > end now */ declare const clampDisplayYear: ({ month, start, end, }: { month?: Date; start?: Date; end?: Date; }) => Date | undefined; export { clampDisplayYear, clampDisplayMonth };