import { DateCell } from '../models';
export default function withDateProps(baseDate: Date, cursorDate: Date): <T extends DateCell>(cell: T) => T & {
    date: number;
    isCurrentMonth: boolean;
    isCurrentDate: boolean;
    isWeekend: boolean;
};
