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