import { AnyDateValue, DateStringValue, DayOfWeek } from '../../types'; interface GetMonthDaysInput { month: AnyDateValue; firstDayOfWeek: DayOfWeek | undefined; consistentWeeks: boolean | undefined; } export declare function getMonthDays({ month, firstDayOfWeek, consistentWeeks, }: GetMonthDaysInput): DateStringValue[][]; export {};