import React from 'react';
import { Dayjs } from 'dayjs';
export interface DayProps {
    day?: number;
    isLastRow?: boolean;
    month: number;
    year: number;
    daysSelected?: [Dayjs?, Dayjs?];
    timezone: 'local' | 'utc';
    onDaySelect?: (date: Dayjs) => void;
}
declare const _default: React.NamedExoticComponent<DayProps>;
export default _default;
