import React from 'react'; import { DateRange, DefinedRange, Setter, NavigationAction } from './types'; interface MenuProps { dateRange: DateRange; ranges: DefinedRange[]; minDate: Date; maxDate: Date; firstMonth: Date; secondMonth: Date; setFirstMonth: Setter; setSecondMonth: Setter; setDateRange: Setter; helpers: { inHoverRange: (day: Date) => boolean; }; handlers: { onDayClick: (day: Date) => void; onDayHover: (day: Date) => void; onMonthNavigate: (marker: symbol, action: NavigationAction) => void; }; } export declare const Menu: React.FunctionComponent; export {}; //# sourceMappingURL=picker.menu.d.ts.map