import { addFp } from '../../utils/dateTime'; import { VcExtendedDatetimePickerActionType } from '../../types'; export declare const STATE_ABSOLUTE = "absolute"; export declare const STATE_RELATIVE = "relative"; export declare const STATE_NOW = "now"; export type PartsType = 'FROM' | 'TO'; export declare const PARTS: { [key in PartsType]: { [key: string]: string; }; }; export declare const RELATIVE_OPTIONS_ACTIONS: { [key in VcExtendedDatetimePickerActionType]: typeof addFp; }; export declare const RELATIVE_OPTIONS_ACTION_KEYS: ReadonlyArray; export declare const isExtendedDatetimePickerActionType: (value: string) => value is VcExtendedDatetimePickerActionType; export type RelativeDatePartItemType = 'seconds' | 'minutes' | 'hours' | 'days' | 'weeks' | 'months' | 'years'; export declare const RELATIVE_DATE_PARTS: Array; export declare const isRelativeDatePart: (value: string) => value is RelativeDatePartItemType; export declare const DATE_PARTS_TRANSLATIONS: { [key: string]: string; };