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