import { MonthlySelectValue } from './RangeFilter.types'; export declare const TIME_FORMAT = "HH:mm:ss.SSS"; export declare const DEFAULT_RANGE_START = "00:00:00.000"; export declare const DEFAULT_RANGE_END = "23:59:59.999"; export declare const MONTH_DAYS: (locale: string) => string[]; export declare enum DAYS_OF_PERIOD_ENUM { DAY_OF_MONTH = "MONTH", DAY_OF_WEEK = "WEEK" } export declare enum COUNTED_FROM_ENUM { BEGINNING = "BEGINNING", ENDING = "ENDING" } export declare const TYPES: { DAILY: string; WEEKLY: string; MONTHLY: string; }; export type RangeFilterType = keyof typeof TYPES; export declare const DEFAULT_DAYS_OF_PERIODS: MonthlySelectValue[]; export declare const DEFAULT_COUNTED_FROM: MonthlySelectValue[]; export declare const defaultId: string; export declare const TYPES_DATA: { MONTHLY: { labelTranslationKey: string; defaultLabel: string; component: import('react').FC> & { WrappedComponent: import('react').ComponentType; }; definition: { period: DAYS_OF_PERIOD_ENUM; periodType: COUNTED_FROM_ENUM; definition: {}; id: string; }[]; }; WEEKLY: { labelTranslationKey: string; defaultLabel: string; component: ({ value, onChange, onRangeClear, onRangePaste, onRangeCopy, rangeClipboard, intl, valueSelectionModes, rangeDisplayMode, texts, }: import('./Filters/WeeklyFilter/WeeklyFilter.types').WeeklyFilterProps) => JSX.Element; definition: {}; }; DAILY: { labelTranslationKey: string; defaultLabel: string; component: import('react').FC> & { WrappedComponent: import('react').ComponentType; }; definition: { start: string; stop: string; inverted: boolean; }; }; }; export declare const SPACE_UNICODE = "\u00A0"; export declare const MONTHLY_SCHEDULER_INTL_KEYS_NTH_WEEK: { id: string; defaultMessage: string; }[]; export declare const MONTHLY_SCHEDULER_INTL_KEYS_WEEKDAYS_LONG: { id: string; defaultMessage: string; }[]; export declare const MONTHLY_SCHEDULER_INTL_KEYS_WEEKDAYS_SHORT: { id: string; defaultMessage: string; }[];