import type { LocaleType } from '../types'; declare const createMonthDays: (startDate: Date | undefined | null, length?: number, locale?: LocaleType) => { monthStr: string; days: (Date | null)[][]; }[]; export default createMonthDays;