import { MaybeDateInput } from './types.js'; /** * Returns the total number of days from a given month. * @param [inputDate] - A string, Date object or nothing for the current month */ declare function monthDays(inputDate?: MaybeDateInput): number; export { monthDays };