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