import { Color } from "../../../lib/inputTypes"; import { DateRangePickerOption } from "./DateRangePicker"; export declare const makeDateRangePickerClassName: (className: string) => string; export declare const getWeekdays: (locale: Locale) => string[]; export declare const capitalize: (s: string, locale: Locale) => string; export declare const getStartDateByDropdownValue: (dropdownValue: string | null | undefined, dropdownOptions: DateRangePickerOption[]) => Date | null; export declare const getEndDateByDropdownValue: (dropdownValue: string | null | undefined, dropdownOptions: DateRangePickerOption[]) => Date; export declare const parseStartDate: (startDate: Date | null | undefined, minDate: Date | null | undefined, selectedDropdownValue: string | null | undefined, dropdownOptions: DateRangePickerOption[]) => Date | null; export declare const parseEndDate: (endDate: Date | null | undefined, maxDate: Date | null | undefined, selectedDropdownValue: string | null | undefined, dropdownOptions: DateRangePickerOption[]) => Date | null; export declare const defaultOptions: DateRangePickerOption[]; export declare const getDateStyles: (date: Date, finalStartDate: Date | null, finalEndDate: Date | null, hoveredDate: Date | undefined, isDateDisabled: boolean, color: Color) => string; export declare const displaySelected: (selectedStartDay: Date | null, selectedEndDay: Date | null) => string | undefined;