import React from 'react'; import { DateLimitProps, DateRange, ValueProps } from "../../index"; declare type Props = { currentVisibleDate: Date; onChange: (date: Date) => void; } & DateLimitProps & ValueProps; export declare const MonthsSliderRange: React.FC; export {};