import React from "react"; export interface DateRange { startDate?: Date; endDate?: Date; } export declare type Setter = React.Dispatch> | ((value: T) => void); export declare enum NavigationAction { Previous = -1, Next = 1 } export declare type DefinedRange = { startDate: Date; endDate: Date; label: string; }; export declare type Marker = symbol; export declare const MARKERS: { [key: string]: Marker; }; //# sourceMappingURL=types.d.ts.map