import React from 'react';
import type { TabIndex } from '../../types';
import { type DateObj, type Week } from '../types';
interface WeekDaysProps {
    weeks: Week[];
    handleClickDay: (date: DateObj) => void;
    monthsLong: string[];
    shouldSetFocus: boolean;
    tabIndex: TabIndex;
    testId?: string;
}
declare const WeekDays: React.NamedExoticComponent<WeekDaysProps>;
export default WeekDays;
