import { Dayjs } from '../../helpers/dayJsHelper'; import { RangeDatePickerInputType, RangeDatePickerValue } from '@epam/uui-core'; export declare const defaultFormat = "MMM D, YYYY"; export declare const valueFormat = "YYYY-MM-DD"; export declare const supportedDateFormats: (format?: string) => string[]; export declare const uuiDatePickerBodyBase: { readonly container: "uui-datepicker-container"; }; export declare const getNewMonth: (value: string | Dayjs | null) => Dayjs; export declare const defaultRangeValue: RangeDatePickerValue; export declare const getDisplayedMonth: (selectedDate: RangeDatePickerValue, focus: RangeDatePickerInputType, initialViewMonth: string | undefined) => Dayjs; export declare const getDisplayedMonthBySelection: (selectedDate: RangeDatePickerValue, focus: RangeDatePickerInputType) => Dayjs; export declare const isValidDate: (input: string | null, format: string, filter?: (day: Dayjs) => boolean) => boolean | undefined; export declare const isValidRange: (range: RangeDatePickerValue) => boolean; export declare const getWithFrom: (selectedDate: RangeDatePickerValue, newValue: string | null, preventEmpty: boolean) => { from: string; to: string; }; export declare const getWithTo: (selectedDate: RangeDatePickerValue, newValue: string | null, preventEmpty: boolean) => { from: string; to: string; }; export declare const toValueDateRangeFormat: (value: RangeDatePickerValue, format?: string) => RangeDatePickerValue; export declare const toCustomDateRangeFormat: (value: RangeDatePickerValue, format?: string) => RangeDatePickerValue; export declare const toValueDateFormat: (value: string | null, format?: string) => string | null; export declare const toCustomDateFormat: (value: string | null, format?: string) => string | null; export declare const getPrevMonth: (currentDate: Dayjs) => Dayjs; export declare const getNextMonth: (currentDate: Dayjs) => Dayjs; export declare const getPrevYear: (currentDate: Dayjs) => Dayjs; export declare const getNextYear: (currentDate: Dayjs) => Dayjs; export declare const getPrevYearsList: (currentDate: Dayjs) => Dayjs; export declare const getNextYearsList: (currentDate: Dayjs) => Dayjs; export declare const isValidAndInFilter: (dateValue: RangeDatePickerValue, inputType: 'from' | 'to', filter?: (d: Dayjs) => boolean) => boolean; //# sourceMappingURL=helpers.d.ts.map