import React from "react";
import { Moment } from "moment-jalaali";
import "./Days.scss";
declare type DaysProps = {
    currentValue: Moment;
    updateValue: (newValue: Moment) => void;
    dismissModal: () => void;
    showTime: "onlyTime" | "onlyDate" | "both";
};
export declare const Days: React.FC<DaysProps>;
export {};
//# sourceMappingURL=Days.d.ts.map