/** * This component is a wrapper of the DateRangePicker used by main app to replace material ui one */ import moment from "moment"; import { Period, PeriodValue } from "../../../types"; type DatePickerRange = [T, T]; interface FilterOption { label: string; value: number; } interface DateRangeProps { dateTimeFormat: string; defaultPeriodFilter?: PeriodValue; error?: string; filterOptions?: Partial> | FilterOption[]; forceUpdates?: boolean; id?: string; isClearable?: boolean; isMaxNow?: boolean; minDate?: moment.Moment; onChange: (val: [number | null, number | null, PeriodValue]) => void; periodOptions?: Period[]; placeholder?: [string, string]; value: DatePickerRange; variant?: "primary" | "secondary"; withFilterOptions?: boolean; withPeriodFilter?: boolean; withTime?: boolean; } export declare const MainAppDateRange: ({ dateTimeFormat, value, withPeriodFilter, variant, periodOptions, filterOptions, onChange, defaultPeriodFilter, withTime, error, isClearable, isMaxNow, minDate, withFilterOptions, placeholder, forceUpdates, id, }: DateRangeProps) => import("react/jsx-runtime").JSX.Element; export {};