/*! * devextreme-vue * Version: 25.2.8 * Build date: Mon Jun 08 2026 * * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED * * This software may be modified and distributed under the terms * of the MIT license. See the LICENSE file in the root of the project for details. * * https://github.com/DevExpress/DevExtreme */ import { PropType } from "vue"; import DateRangeBox, { Properties } from "devextreme/ui/date_range_box"; import dxOverlay from "devextreme/ui/overlay"; import DOMComponent from "devextreme/core/dom_component"; import dxPopup from "devextreme/ui/popup"; import { ApplyValueMode, TextEditorButton, LabelMode, EditorStyle, ValidationMessageMode, Position, ValidationStatus, HorizontalAlignment, VerticalAlignment, TextEditorButtonLocation, FirstDayOfWeek, PositionAlignment, Direction, ButtonStyle, ToolbarItemLocation, ToolbarItemComponent } from "devextreme/common"; import { DropDownPredefinedButton } from "devextreme/ui/drop_down_editor/ui.drop_down_editor"; import { dxCalendarOptions, DisabledDate, CalendarZoomLevel, DisposingEvent as CalendarDisposingEvent, InitializedEvent as CalendarInitializedEvent, OptionChangedEvent as CalendarOptionChangedEvent, ValueChangedEvent as CalendarValueChangedEvent, CalendarSelectionMode, WeekNumberRule } from "devextreme/ui/calendar"; import { dxPopupOptions, ToolbarLocation } from "devextreme/ui/popup"; import { ChangeEvent, ClosedEvent, ContentReadyEvent, CopyEvent, CutEvent, DisposingEvent, EnterKeyEvent, FocusInEvent, FocusOutEvent, InitializedEvent, InputEvent, KeyDownEvent, KeyUpEvent, OpenedEvent, OptionChangedEvent, PasteEvent, ValueChangedEvent } from "devextreme/ui/date_range_box"; import { AnimationConfig, CollisionResolution, PositionConfig, AnimationState, AnimationType, CollisionResolutionCombination } from "devextreme/common/core/animation"; import { dxButtonOptions, ClickEvent, ContentReadyEvent as ButtonContentReadyEvent, DisposingEvent as ButtonDisposingEvent, InitializedEvent as ButtonInitializedEvent, OptionChangedEvent as ButtonOptionChangedEvent } from "devextreme/ui/button"; import { event } from "devextreme/events/events.types"; import { EventInfo } from "devextreme/common/core/events"; import { Component } from "devextreme/core/component"; import { LocateInMenuMode, ShowTextMode } from "devextreme/ui/toolbar"; type AccessibleOptions = Pick; interface DxDateRangeBox extends AccessibleOptions { readonly instance?: DateRangeBox; } declare const DxDateRangeBox: import("vue").DefineComponent<{ acceptCustomValue: BooleanConstructor; accessKey: StringConstructor; activeStateEnabled: BooleanConstructor; applyButtonText: StringConstructor; applyValueMode: PropType; buttons: PropType<(TextEditorButton | DropDownPredefinedButton)[]>; calendarOptions: PropType | dxCalendarOptions>; cancelButtonText: StringConstructor; dateSerializationFormat: StringConstructor; deferRendering: BooleanConstructor; disabled: BooleanConstructor; disableOutOfRangeSelection: BooleanConstructor; displayFormat: PropType | import("devextreme/common/core/localization").FormatObject | ((value: number | Date) => string) | ((value: Date) => string) | ((value: number) => string) | Intl.DateTimeFormatOptions | Intl.NumberFormatOptions | ((value: number | Date) => string) | undefined>; dropDownButtonTemplate: {}; dropDownOptions: PropType | dxPopupOptions>; elementAttr: PropType>; endDate: PropType; endDateInputAttr: {}; endDateLabel: StringConstructor; endDateName: StringConstructor; endDateOutOfRangeMessage: StringConstructor; endDatePlaceholder: StringConstructor; endDateText: StringConstructor; focusStateEnabled: BooleanConstructor; height: (NumberConstructor | StringConstructor)[]; hint: StringConstructor; hoverStateEnabled: BooleanConstructor; invalidEndDateMessage: StringConstructor; invalidStartDateMessage: StringConstructor; isDirty: BooleanConstructor; isValid: BooleanConstructor; labelMode: PropType; max: PropType; min: PropType; multiView: BooleanConstructor; onChange: PropType<(e: ChangeEvent) => void>; onClosed: PropType<(e: ClosedEvent) => void>; onContentReady: PropType<(e: ContentReadyEvent) => void>; onCopy: PropType<(e: CopyEvent) => void>; onCut: PropType<(e: CutEvent) => void>; onDisposing: PropType<(e: DisposingEvent) => void>; onEnterKey: PropType<(e: EnterKeyEvent) => void>; onFocusIn: PropType<(e: FocusInEvent) => void>; onFocusOut: PropType<(e: FocusOutEvent) => void>; onInitialized: PropType<(e: InitializedEvent) => void>; onInput: PropType<(e: InputEvent) => void>; onKeyDown: PropType<(e: KeyDownEvent) => void>; onKeyUp: PropType<(e: KeyUpEvent) => void>; onOpened: PropType<(e: OpenedEvent) => void>; onOptionChanged: PropType<(e: OptionChangedEvent) => void>; onPaste: PropType<(e: PasteEvent) => void>; onValueChanged: PropType<(e: ValueChangedEvent) => void>; opened: BooleanConstructor; openOnFieldClick: BooleanConstructor; readOnly: BooleanConstructor; rtlEnabled: BooleanConstructor; showClearButton: BooleanConstructor; showDropDownButton: BooleanConstructor; spellcheck: BooleanConstructor; startDate: PropType; startDateInputAttr: {}; startDateLabel: StringConstructor; startDateName: StringConstructor; startDateOutOfRangeMessage: StringConstructor; startDatePlaceholder: StringConstructor; startDateText: StringConstructor; stylingMode: PropType; tabIndex: NumberConstructor; todayButtonText: StringConstructor; useMaskBehavior: BooleanConstructor; validationError: {}; validationErrors: PropType; validationMessageMode: PropType; validationMessagePosition: PropType; validationStatus: PropType; value: PropType<(string | number | Date | null)[]>; valueChangeEvent: StringConstructor; visible: BooleanConstructor; width: (NumberConstructor | StringConstructor)[]; }, unknown, unknown, { instance(): DateRangeBox; }, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:acceptCustomValue": null; "update:accessKey": null; "update:activeStateEnabled": null; "update:applyButtonText": null; "update:applyValueMode": null; "update:buttons": null; "update:calendarOptions": null; "update:cancelButtonText": null; "update:dateSerializationFormat": null; "update:deferRendering": null; "update:disabled": null; "update:disableOutOfRangeSelection": null; "update:displayFormat": null; "update:dropDownButtonTemplate": null; "update:dropDownOptions": null; "update:elementAttr": null; "update:endDate": null; "update:endDateInputAttr": null; "update:endDateLabel": null; "update:endDateName": null; "update:endDateOutOfRangeMessage": null; "update:endDatePlaceholder": null; "update:endDateText": null; "update:focusStateEnabled": null; "update:height": null; "update:hint": null; "update:hoverStateEnabled": null; "update:invalidEndDateMessage": null; "update:invalidStartDateMessage": null; "update:isDirty": null; "update:isValid": null; "update:labelMode": null; "update:max": null; "update:min": null; "update:multiView": null; "update:onChange": null; "update:onClosed": null; "update:onContentReady": null; "update:onCopy": null; "update:onCut": null; "update:onDisposing": null; "update:onEnterKey": null; "update:onFocusIn": null; "update:onFocusOut": null; "update:onInitialized": null; "update:onInput": null; "update:onKeyDown": null; "update:onKeyUp": null; "update:onOpened": null; "update:onOptionChanged": null; "update:onPaste": null; "update:onValueChanged": null; "update:opened": null; "update:openOnFieldClick": null; "update:readOnly": null; "update:rtlEnabled": null; "update:showClearButton": null; "update:showDropDownButton": null; "update:spellcheck": null; "update:startDate": null; "update:startDateInputAttr": null; "update:startDateLabel": null; "update:startDateName": null; "update:startDateOutOfRangeMessage": null; "update:startDatePlaceholder": null; "update:startDateText": null; "update:stylingMode": null; "update:tabIndex": null; "update:todayButtonText": null; "update:useMaskBehavior": null; "update:validationError": null; "update:validationErrors": null; "update:validationMessageMode": null; "update:validationMessagePosition": null; "update:validationStatus": null; "update:value": null; "update:valueChangeEvent": null; "update:visible": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; buttons: PropType<(TextEditorButton | DropDownPredefinedButton)[]>; calendarOptions: PropType | dxCalendarOptions>; cancelButtonText: StringConstructor; dateSerializationFormat: StringConstructor; deferRendering: BooleanConstructor; disabled: BooleanConstructor; disableOutOfRangeSelection: BooleanConstructor; displayFormat: PropType | import("devextreme/common/core/localization").FormatObject | ((value: number | Date) => string) | ((value: Date) => string) | ((value: number) => string) | Intl.DateTimeFormatOptions | Intl.NumberFormatOptions | ((value: number | Date) => string) | undefined>; dropDownButtonTemplate: {}; dropDownOptions: PropType | dxPopupOptions>; elementAttr: PropType>; endDate: PropType; endDateInputAttr: {}; endDateLabel: StringConstructor; endDateName: StringConstructor; endDateOutOfRangeMessage: StringConstructor; endDatePlaceholder: StringConstructor; endDateText: StringConstructor; focusStateEnabled: BooleanConstructor; height: (NumberConstructor | StringConstructor)[]; hint: StringConstructor; hoverStateEnabled: BooleanConstructor; invalidEndDateMessage: StringConstructor; invalidStartDateMessage: StringConstructor; isDirty: BooleanConstructor; isValid: BooleanConstructor; labelMode: PropType; max: PropType; min: PropType; multiView: BooleanConstructor; onChange: PropType<(e: ChangeEvent) => void>; onClosed: PropType<(e: ClosedEvent) => void>; onContentReady: PropType<(e: ContentReadyEvent) => void>; onCopy: PropType<(e: CopyEvent) => void>; onCut: PropType<(e: CutEvent) => void>; onDisposing: PropType<(e: DisposingEvent) => void>; onEnterKey: PropType<(e: EnterKeyEvent) => void>; onFocusIn: PropType<(e: FocusInEvent) => void>; onFocusOut: PropType<(e: FocusOutEvent) => void>; onInitialized: PropType<(e: InitializedEvent) => void>; onInput: PropType<(e: InputEvent) => void>; onKeyDown: PropType<(e: KeyDownEvent) => void>; onKeyUp: PropType<(e: KeyUpEvent) => void>; onOpened: PropType<(e: OpenedEvent) => void>; onOptionChanged: PropType<(e: OptionChangedEvent) => void>; onPaste: PropType<(e: PasteEvent) => void>; onValueChanged: PropType<(e: ValueChangedEvent) => void>; opened: BooleanConstructor; openOnFieldClick: BooleanConstructor; readOnly: BooleanConstructor; rtlEnabled: BooleanConstructor; showClearButton: BooleanConstructor; showDropDownButton: BooleanConstructor; spellcheck: BooleanConstructor; startDate: PropType; startDateInputAttr: {}; startDateLabel: StringConstructor; startDateName: StringConstructor; startDateOutOfRangeMessage: StringConstructor; startDatePlaceholder: StringConstructor; startDateText: StringConstructor; stylingMode: PropType; tabIndex: NumberConstructor; todayButtonText: StringConstructor; useMaskBehavior: BooleanConstructor; validationError: {}; validationErrors: PropType; validationMessageMode: PropType; validationMessagePosition: PropType; validationStatus: PropType; value: PropType<(string | number | Date | null)[]>; valueChangeEvent: StringConstructor; visible: BooleanConstructor; width: (NumberConstructor | StringConstructor)[]; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:disabled"?: ((...args: any[]) => any) | undefined; "onUpdate:elementAttr"?: ((...args: any[]) => any) | undefined; "onUpdate:onDisposing"?: ((...args: any[]) => any) | undefined; "onUpdate:onInitialized"?: ((...args: any[]) => any) | undefined; "onUpdate:onOptionChanged"?: ((...args: any[]) => any) | undefined; "onUpdate:rtlEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:height"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:max"?: ((...args: any[]) => any) | undefined; "onUpdate:min"?: ((...args: any[]) => any) | undefined; "onUpdate:hoverStateEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:onContentReady"?: ((...args: any[]) => any) | undefined; "onUpdate:accessKey"?: ((...args: any[]) => any) | undefined; "onUpdate:activeStateEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:focusStateEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:hint"?: ((...args: any[]) => any) | undefined; "onUpdate:tabIndex"?: ((...args: any[]) => any) | undefined; "onUpdate:stylingMode"?: ((...args: any[]) => any) | undefined; "onUpdate:buttons"?: ((...args: any[]) => any) | undefined; "onUpdate:isDirty"?: ((...args: any[]) => any) | undefined; "onUpdate:isValid"?: ((...args: any[]) => any) | undefined; "onUpdate:labelMode"?: ((...args: any[]) => any) | undefined; "onUpdate:onChange"?: ((...args: any[]) => any) | undefined; "onUpdate:onCopy"?: ((...args: any[]) => any) | undefined; "onUpdate:onCut"?: ((...args: any[]) => any) | undefined; "onUpdate:onEnterKey"?: ((...args: any[]) => any) | undefined; "onUpdate:onFocusIn"?: ((...args: any[]) => any) | undefined; "onUpdate:onFocusOut"?: ((...args: any[]) => any) | undefined; "onUpdate:onInput"?: ((...args: any[]) => any) | undefined; "onUpdate:onKeyDown"?: ((...args: any[]) => any) | undefined; "onUpdate:onKeyUp"?: ((...args: any[]) => any) | undefined; "onUpdate:onPaste"?: ((...args: any[]) => any) | undefined; "onUpdate:onValueChanged"?: ((...args: any[]) => any) | undefined; "onUpdate:readOnly"?: ((...args: any[]) => any) | undefined; "onUpdate:showClearButton"?: ((...args: any[]) => any) | undefined; "onUpdate:spellcheck"?: ((...args: any[]) => any) | undefined; "onUpdate:validationError"?: ((...args: any[]) => any) | undefined; "onUpdate:validationErrors"?: ((...args: any[]) => any) | undefined; "onUpdate:validationMessageMode"?: ((...args: any[]) => any) | undefined; "onUpdate:validationMessagePosition"?: ((...args: any[]) => any) | undefined; "onUpdate:validationStatus"?: ((...args: any[]) => any) | undefined; "onUpdate:value"?: ((...args: any[]) => any) | undefined; "onUpdate:valueChangeEvent"?: ((...args: any[]) => any) | undefined; "onUpdate:dateSerializationFormat"?: ((...args: any[]) => any) | undefined; "onUpdate:deferRendering"?: ((...args: any[]) => any) | undefined; "onUpdate:acceptCustomValue"?: ((...args: any[]) => any) | undefined; "onUpdate:applyValueMode"?: ((...args: any[]) => any) | undefined; "onUpdate:dropDownButtonTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:dropDownOptions"?: ((...args: any[]) => any) | undefined; "onUpdate:onClosed"?: ((...args: any[]) => any) | undefined; "onUpdate:onOpened"?: ((...args: any[]) => any) | undefined; "onUpdate:opened"?: ((...args: any[]) => any) | undefined; "onUpdate:openOnFieldClick"?: ((...args: any[]) => any) | undefined; "onUpdate:showDropDownButton"?: ((...args: any[]) => any) | undefined; "onUpdate:startDate"?: ((...args: any[]) => any) | undefined; "onUpdate:displayFormat"?: ((...args: any[]) => any) | undefined; "onUpdate:applyButtonText"?: ((...args: any[]) => any) | undefined; "onUpdate:cancelButtonText"?: ((...args: any[]) => any) | undefined; "onUpdate:todayButtonText"?: ((...args: any[]) => any) | undefined; "onUpdate:calendarOptions"?: ((...args: any[]) => any) | undefined; "onUpdate:useMaskBehavior"?: ((...args: any[]) => any) | undefined; "onUpdate:disableOutOfRangeSelection"?: ((...args: any[]) => any) | undefined; "onUpdate:endDate"?: ((...args: any[]) => any) | undefined; "onUpdate:endDateInputAttr"?: ((...args: any[]) => any) | undefined; "onUpdate:endDateLabel"?: ((...args: any[]) => any) | undefined; "onUpdate:endDateName"?: ((...args: any[]) => any) | undefined; "onUpdate:endDateOutOfRangeMessage"?: ((...args: any[]) => any) | undefined; "onUpdate:endDatePlaceholder"?: ((...args: any[]) => any) | undefined; "onUpdate:endDateText"?: ((...args: any[]) => any) | undefined; "onUpdate:invalidEndDateMessage"?: ((...args: any[]) => any) | undefined; "onUpdate:invalidStartDateMessage"?: ((...args: any[]) => any) | undefined; "onUpdate:multiView"?: ((...args: any[]) => any) | undefined; "onUpdate:startDateInputAttr"?: ((...args: any[]) => any) | undefined; "onUpdate:startDateLabel"?: ((...args: any[]) => any) | undefined; "onUpdate:startDateName"?: ((...args: any[]) => any) | undefined; "onUpdate:startDateOutOfRangeMessage"?: ((...args: any[]) => any) | undefined; "onUpdate:startDatePlaceholder"?: ((...args: any[]) => any) | undefined; "onUpdate:startDateText"?: ((...args: any[]) => any) | undefined; }, { disabled: boolean; rtlEnabled: boolean; visible: boolean; hoverStateEnabled: boolean; activeStateEnabled: boolean; focusStateEnabled: boolean; isDirty: boolean; isValid: boolean; readOnly: boolean; showClearButton: boolean; spellcheck: boolean; deferRendering: boolean; acceptCustomValue: boolean; opened: boolean; openOnFieldClick: boolean; showDropDownButton: boolean; useMaskBehavior: boolean; disableOutOfRangeSelection: boolean; multiView: boolean; }>; declare const DxAnimation: import("vue").DefineComponent<{ hide: PropType | AnimationConfig>; show: PropType | AnimationConfig>; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:hide": null; "update:show": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly | AnimationConfig>; show: PropType | AnimationConfig>; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:show"?: ((...args: any[]) => any) | undefined; "onUpdate:hide"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxAt: import("vue").DefineComponent<{ x: PropType; y: PropType; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:x": null; "update:y": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; y: PropType; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:x"?: ((...args: any[]) => any) | undefined; "onUpdate:y"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxBoundaryOffset: import("vue").DefineComponent<{ x: NumberConstructor; y: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:x": null; "update:y": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:x"?: ((...args: any[]) => any) | undefined; "onUpdate:y"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxButton: import("vue").DefineComponent<{ location: PropType; name: StringConstructor; options: PropType | dxButtonOptions>; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:location": null; "update:name": null; "update:options": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; name: StringConstructor; options: PropType | dxButtonOptions>; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:name"?: ((...args: any[]) => any) | undefined; "onUpdate:location"?: ((...args: any[]) => any) | undefined; "onUpdate:options"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxCalendarOptions: import("vue").DefineComponent<{ accessKey: StringConstructor; activeStateEnabled: BooleanConstructor; cellTemplate: {}; dateSerializationFormat: StringConstructor; disabled: BooleanConstructor; disabledDates: PropType boolean)>; elementAttr: PropType>; firstDayOfWeek: PropType; focusStateEnabled: BooleanConstructor; height: (NumberConstructor | StringConstructor)[]; hint: StringConstructor; hoverStateEnabled: BooleanConstructor; isDirty: BooleanConstructor; isValid: BooleanConstructor; max: PropType; maxZoomLevel: PropType; min: PropType; minZoomLevel: PropType; name: StringConstructor; onDisposing: PropType<(e: CalendarDisposingEvent) => void>; onInitialized: PropType<(e: CalendarInitializedEvent) => void>; onOptionChanged: PropType<(e: CalendarOptionChangedEvent) => void>; onValueChanged: PropType<(e: CalendarValueChangedEvent) => void>; readOnly: BooleanConstructor; rtlEnabled: BooleanConstructor; selectionMode: PropType; selectWeekOnClick: BooleanConstructor; showTodayButton: BooleanConstructor; showWeekNumbers: BooleanConstructor; tabIndex: NumberConstructor; todayButtonText: StringConstructor; validationError: {}; validationErrors: PropType; validationMessageMode: PropType; validationMessagePosition: PropType; validationStatus: PropType; value: PropType; visible: BooleanConstructor; weekNumberRule: PropType; width: (NumberConstructor | StringConstructor)[]; zoomLevel: PropType; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:accessKey": null; "update:activeStateEnabled": null; "update:cellTemplate": null; "update:dateSerializationFormat": null; "update:disabled": null; "update:disabledDates": null; "update:elementAttr": null; "update:firstDayOfWeek": null; "update:focusStateEnabled": null; "update:height": null; "update:hint": null; "update:hoverStateEnabled": null; "update:isDirty": null; "update:isValid": null; "update:max": null; "update:maxZoomLevel": null; "update:min": null; "update:minZoomLevel": null; "update:name": null; "update:onDisposing": null; "update:onInitialized": null; "update:onOptionChanged": null; "update:onValueChanged": null; "update:readOnly": null; "update:rtlEnabled": null; "update:selectionMode": null; "update:selectWeekOnClick": null; "update:showTodayButton": null; "update:showWeekNumbers": null; "update:tabIndex": null; "update:todayButtonText": null; "update:validationError": null; "update:validationErrors": null; "update:validationMessageMode": null; "update:validationMessagePosition": null; "update:validationStatus": null; "update:value": null; "update:visible": null; "update:weekNumberRule": null; "update:width": null; "update:zoomLevel": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly boolean)>; elementAttr: PropType>; firstDayOfWeek: PropType; focusStateEnabled: BooleanConstructor; height: (NumberConstructor | StringConstructor)[]; hint: StringConstructor; hoverStateEnabled: BooleanConstructor; isDirty: BooleanConstructor; isValid: BooleanConstructor; max: PropType; maxZoomLevel: PropType; min: PropType; minZoomLevel: PropType; name: StringConstructor; onDisposing: PropType<(e: CalendarDisposingEvent) => void>; onInitialized: PropType<(e: CalendarInitializedEvent) => void>; onOptionChanged: PropType<(e: CalendarOptionChangedEvent) => void>; onValueChanged: PropType<(e: CalendarValueChangedEvent) => void>; readOnly: BooleanConstructor; rtlEnabled: BooleanConstructor; selectionMode: PropType; selectWeekOnClick: BooleanConstructor; showTodayButton: BooleanConstructor; showWeekNumbers: BooleanConstructor; tabIndex: NumberConstructor; todayButtonText: StringConstructor; validationError: {}; validationErrors: PropType; validationMessageMode: PropType; validationMessagePosition: PropType; validationStatus: PropType; value: PropType; visible: BooleanConstructor; weekNumberRule: PropType; width: (NumberConstructor | StringConstructor)[]; zoomLevel: PropType; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:disabled"?: ((...args: any[]) => any) | undefined; "onUpdate:elementAttr"?: ((...args: any[]) => any) | undefined; "onUpdate:onDisposing"?: ((...args: any[]) => any) | undefined; "onUpdate:onInitialized"?: ((...args: any[]) => any) | undefined; "onUpdate:onOptionChanged"?: ((...args: any[]) => any) | undefined; "onUpdate:rtlEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:height"?: ((...args: any[]) => any) | undefined; "onUpdate:name"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:selectionMode"?: ((...args: any[]) => any) | undefined; "onUpdate:max"?: ((...args: any[]) => any) | undefined; "onUpdate:min"?: ((...args: any[]) => any) | undefined; "onUpdate:hoverStateEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:accessKey"?: ((...args: any[]) => any) | undefined; "onUpdate:activeStateEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:focusStateEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:hint"?: ((...args: any[]) => any) | undefined; "onUpdate:tabIndex"?: ((...args: any[]) => any) | undefined; "onUpdate:isDirty"?: ((...args: any[]) => any) | undefined; "onUpdate:isValid"?: ((...args: any[]) => any) | undefined; "onUpdate:onValueChanged"?: ((...args: any[]) => any) | undefined; "onUpdate:readOnly"?: ((...args: any[]) => any) | undefined; "onUpdate:validationError"?: ((...args: any[]) => any) | undefined; "onUpdate:validationErrors"?: ((...args: any[]) => any) | undefined; "onUpdate:validationMessageMode"?: ((...args: any[]) => any) | undefined; "onUpdate:validationMessagePosition"?: ((...args: any[]) => any) | undefined; "onUpdate:validationStatus"?: ((...args: any[]) => any) | undefined; "onUpdate:value"?: ((...args: any[]) => any) | undefined; "onUpdate:dateSerializationFormat"?: ((...args: any[]) => any) | undefined; "onUpdate:cellTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:firstDayOfWeek"?: ((...args: any[]) => any) | undefined; "onUpdate:disabledDates"?: ((...args: any[]) => any) | undefined; "onUpdate:maxZoomLevel"?: ((...args: any[]) => any) | undefined; "onUpdate:minZoomLevel"?: ((...args: any[]) => any) | undefined; "onUpdate:selectWeekOnClick"?: ((...args: any[]) => any) | undefined; "onUpdate:showTodayButton"?: ((...args: any[]) => any) | undefined; "onUpdate:showWeekNumbers"?: ((...args: any[]) => any) | undefined; "onUpdate:todayButtonText"?: ((...args: any[]) => any) | undefined; "onUpdate:weekNumberRule"?: ((...args: any[]) => any) | undefined; "onUpdate:zoomLevel"?: ((...args: any[]) => any) | undefined; }, { disabled: boolean; rtlEnabled: boolean; visible: boolean; hoverStateEnabled: boolean; activeStateEnabled: boolean; focusStateEnabled: boolean; isDirty: boolean; isValid: boolean; readOnly: boolean; selectWeekOnClick: boolean; showTodayButton: boolean; showWeekNumbers: boolean; }>; declare const DxCollision: import("vue").DefineComponent<{ x: PropType; y: PropType; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:x": null; "update:y": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; y: PropType; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:x"?: ((...args: any[]) => any) | undefined; "onUpdate:y"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxDisplayFormat: import("vue").DefineComponent<{ currency: StringConstructor; formatter: PropType<(value: number | Date) => string>; parser: PropType<(value: string) => number | Date>; precision: NumberConstructor; type: PropType; useCurrencyAccountingStyle: BooleanConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:currency": null; "update:formatter": null; "update:parser": null; "update:precision": null; "update:type": null; "update:useCurrencyAccountingStyle": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly string>; parser: PropType<(value: string) => number | Date>; precision: NumberConstructor; type: PropType; useCurrencyAccountingStyle: BooleanConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:type"?: ((...args: any[]) => any) | undefined; "onUpdate:currency"?: ((...args: any[]) => any) | undefined; "onUpdate:formatter"?: ((...args: any[]) => any) | undefined; "onUpdate:parser"?: ((...args: any[]) => any) | undefined; "onUpdate:precision"?: ((...args: any[]) => any) | undefined; "onUpdate:useCurrencyAccountingStyle"?: ((...args: any[]) => any) | undefined; }, { useCurrencyAccountingStyle: boolean; }>; declare const DxDropDownOptions: import("vue").DefineComponent<{ accessKey: StringConstructor; animation: PropType>; container: {}; contentTemplate: {}; deferRendering: BooleanConstructor; disabled: BooleanConstructor; dragAndResizeArea: {}; dragEnabled: BooleanConstructor; dragOutsideBoundary: BooleanConstructor; enableBodyScroll: BooleanConstructor; focusStateEnabled: BooleanConstructor; fullScreen: BooleanConstructor; height: (NumberConstructor | StringConstructor)[]; hideOnOutsideClick: PropType boolean)>; hideOnParentScroll: BooleanConstructor; hint: StringConstructor; hoverStateEnabled: BooleanConstructor; maxHeight: (NumberConstructor | StringConstructor)[]; maxWidth: (NumberConstructor | StringConstructor)[]; minHeight: (NumberConstructor | StringConstructor)[]; minWidth: (NumberConstructor | StringConstructor)[]; onContentReady: PropType<(e: EventInfo) => void>; onDisposing: PropType<(e: EventInfo) => void>; onHidden: PropType<(e: EventInfo) => void>; onHiding: PropType<(e: { cancel: boolean | any; component: dxOverlay; element: any; model: any; }) => void>; onInitialized: PropType<(e: { component: Component; element: any; }) => void>; onOptionChanged: PropType<(e: { component: DOMComponent; element: any; fullName: string; model: any; name: string; previousValue: any; value: any; }) => void>; onResize: PropType<(e: { component: dxPopup; element: any; event: event; height: number; model: any; width: number; }) => void>; onResizeEnd: PropType<(e: { component: dxPopup; element: any; event: event; height: number; model: any; width: number; }) => void>; onResizeStart: PropType<(e: { component: dxPopup; element: any; event: event; height: number; model: any; width: number; }) => void>; onShowing: PropType<(e: { cancel: boolean | any; component: dxOverlay; element: any; model: any; }) => void>; onShown: PropType<(e: EventInfo) => void>; onTitleRendered: PropType<(e: { component: dxPopup; element: any; model: any; titleElement: any; }) => void>; position: PropType | PositionConfig | PositionAlignment | (() => void)>; resizeEnabled: BooleanConstructor; restorePosition: BooleanConstructor; rtlEnabled: BooleanConstructor; shading: BooleanConstructor; shadingColor: StringConstructor; showCloseButton: BooleanConstructor; showTitle: BooleanConstructor; tabIndex: NumberConstructor; title: StringConstructor; titleTemplate: {}; toolbarItems: PropType; visible: BooleanConstructor; width: (NumberConstructor | StringConstructor)[]; wrapperAttr: {}; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:accessKey": null; "update:animation": null; "update:container": null; "update:contentTemplate": null; "update:deferRendering": null; "update:disabled": null; "update:dragAndResizeArea": null; "update:dragEnabled": null; "update:dragOutsideBoundary": null; "update:enableBodyScroll": null; "update:focusStateEnabled": null; "update:fullScreen": null; "update:height": null; "update:hideOnOutsideClick": null; "update:hideOnParentScroll": null; "update:hint": null; "update:hoverStateEnabled": null; "update:maxHeight": null; "update:maxWidth": null; "update:minHeight": null; "update:minWidth": null; "update:onContentReady": null; "update:onDisposing": null; "update:onHidden": null; "update:onHiding": null; "update:onInitialized": null; "update:onOptionChanged": null; "update:onResize": null; "update:onResizeEnd": null; "update:onResizeStart": null; "update:onShowing": null; "update:onShown": null; "update:onTitleRendered": null; "update:position": null; "update:resizeEnabled": null; "update:restorePosition": null; "update:rtlEnabled": null; "update:shading": null; "update:shadingColor": null; "update:showCloseButton": null; "update:showTitle": null; "update:tabIndex": null; "update:title": null; "update:titleTemplate": null; "update:toolbarItems": null; "update:visible": null; "update:width": null; "update:wrapperAttr": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly>; container: {}; contentTemplate: {}; deferRendering: BooleanConstructor; disabled: BooleanConstructor; dragAndResizeArea: {}; dragEnabled: BooleanConstructor; dragOutsideBoundary: BooleanConstructor; enableBodyScroll: BooleanConstructor; focusStateEnabled: BooleanConstructor; fullScreen: BooleanConstructor; height: (NumberConstructor | StringConstructor)[]; hideOnOutsideClick: PropType boolean)>; hideOnParentScroll: BooleanConstructor; hint: StringConstructor; hoverStateEnabled: BooleanConstructor; maxHeight: (NumberConstructor | StringConstructor)[]; maxWidth: (NumberConstructor | StringConstructor)[]; minHeight: (NumberConstructor | StringConstructor)[]; minWidth: (NumberConstructor | StringConstructor)[]; onContentReady: PropType<(e: EventInfo) => void>; onDisposing: PropType<(e: EventInfo) => void>; onHidden: PropType<(e: EventInfo) => void>; onHiding: PropType<(e: { cancel: boolean | any; component: dxOverlay; element: any; model: any; }) => void>; onInitialized: PropType<(e: { component: Component; element: any; }) => void>; onOptionChanged: PropType<(e: { component: DOMComponent; element: any; fullName: string; model: any; name: string; previousValue: any; value: any; }) => void>; onResize: PropType<(e: { component: dxPopup; element: any; event: event; height: number; model: any; width: number; }) => void>; onResizeEnd: PropType<(e: { component: dxPopup; element: any; event: event; height: number; model: any; width: number; }) => void>; onResizeStart: PropType<(e: { component: dxPopup; element: any; event: event; height: number; model: any; width: number; }) => void>; onShowing: PropType<(e: { cancel: boolean | any; component: dxOverlay; element: any; model: any; }) => void>; onShown: PropType<(e: EventInfo) => void>; onTitleRendered: PropType<(e: { component: dxPopup; element: any; model: any; titleElement: any; }) => void>; position: PropType | PositionConfig | PositionAlignment | (() => void)>; resizeEnabled: BooleanConstructor; restorePosition: BooleanConstructor; rtlEnabled: BooleanConstructor; shading: BooleanConstructor; shadingColor: StringConstructor; showCloseButton: BooleanConstructor; showTitle: BooleanConstructor; tabIndex: NumberConstructor; title: StringConstructor; titleTemplate: {}; toolbarItems: PropType; visible: BooleanConstructor; width: (NumberConstructor | StringConstructor)[]; wrapperAttr: {}; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:disabled"?: ((...args: any[]) => any) | undefined; "onUpdate:onDisposing"?: ((...args: any[]) => any) | undefined; "onUpdate:onInitialized"?: ((...args: any[]) => any) | undefined; "onUpdate:onOptionChanged"?: ((...args: any[]) => any) | undefined; "onUpdate:rtlEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:title"?: ((...args: any[]) => any) | undefined; "onUpdate:height"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:container"?: ((...args: any[]) => any) | undefined; "onUpdate:contentTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:hoverStateEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:onContentReady"?: ((...args: any[]) => any) | undefined; "onUpdate:accessKey"?: ((...args: any[]) => any) | undefined; "onUpdate:focusStateEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:hint"?: ((...args: any[]) => any) | undefined; "onUpdate:tabIndex"?: ((...args: any[]) => any) | undefined; "onUpdate:minWidth"?: ((...args: any[]) => any) | undefined; "onUpdate:position"?: ((...args: any[]) => any) | undefined; "onUpdate:animation"?: ((...args: any[]) => any) | undefined; "onUpdate:deferRendering"?: ((...args: any[]) => any) | undefined; "onUpdate:dragAndResizeArea"?: ((...args: any[]) => any) | undefined; "onUpdate:dragEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:dragOutsideBoundary"?: ((...args: any[]) => any) | undefined; "onUpdate:enableBodyScroll"?: ((...args: any[]) => any) | undefined; "onUpdate:fullScreen"?: ((...args: any[]) => any) | undefined; "onUpdate:hideOnOutsideClick"?: ((...args: any[]) => any) | undefined; "onUpdate:hideOnParentScroll"?: ((...args: any[]) => any) | undefined; "onUpdate:maxHeight"?: ((...args: any[]) => any) | undefined; "onUpdate:maxWidth"?: ((...args: any[]) => any) | undefined; "onUpdate:minHeight"?: ((...args: any[]) => any) | undefined; "onUpdate:onHidden"?: ((...args: any[]) => any) | undefined; "onUpdate:onHiding"?: ((...args: any[]) => any) | undefined; "onUpdate:onResize"?: ((...args: any[]) => any) | undefined; "onUpdate:onResizeEnd"?: ((...args: any[]) => any) | undefined; "onUpdate:onResizeStart"?: ((...args: any[]) => any) | undefined; "onUpdate:onShowing"?: ((...args: any[]) => any) | undefined; "onUpdate:onShown"?: ((...args: any[]) => any) | undefined; "onUpdate:onTitleRendered"?: ((...args: any[]) => any) | undefined; "onUpdate:resizeEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:restorePosition"?: ((...args: any[]) => any) | undefined; "onUpdate:shading"?: ((...args: any[]) => any) | undefined; "onUpdate:shadingColor"?: ((...args: any[]) => any) | undefined; "onUpdate:showCloseButton"?: ((...args: any[]) => any) | undefined; "onUpdate:showTitle"?: ((...args: any[]) => any) | undefined; "onUpdate:titleTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:toolbarItems"?: ((...args: any[]) => any) | undefined; "onUpdate:wrapperAttr"?: ((...args: any[]) => any) | undefined; }, { disabled: boolean; rtlEnabled: boolean; visible: boolean; hoverStateEnabled: boolean; focusStateEnabled: boolean; deferRendering: boolean; dragEnabled: boolean; dragOutsideBoundary: boolean; enableBodyScroll: boolean; fullScreen: boolean; hideOnParentScroll: boolean; resizeEnabled: boolean; restorePosition: boolean; shading: boolean; showCloseButton: boolean; showTitle: boolean; }>; declare const DxFrom: import("vue").DefineComponent<{ left: NumberConstructor; opacity: NumberConstructor; position: PropType | PositionConfig>; scale: NumberConstructor; top: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:left": null; "update:opacity": null; "update:position": null; "update:scale": null; "update:top": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly | PositionConfig>; scale: NumberConstructor; top: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:opacity"?: ((...args: any[]) => any) | undefined; "onUpdate:left"?: ((...args: any[]) => any) | undefined; "onUpdate:top"?: ((...args: any[]) => any) | undefined; "onUpdate:position"?: ((...args: any[]) => any) | undefined; "onUpdate:scale"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxHide: import("vue").DefineComponent<{ complete: PropType<($element: any, config: AnimationConfig) => void>; delay: NumberConstructor; direction: PropType; duration: NumberConstructor; easing: StringConstructor; from: PropType | AnimationState>; staggerDelay: NumberConstructor; start: PropType<($element: any, config: AnimationConfig) => void>; to: PropType | AnimationState>; type: PropType; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:complete": null; "update:delay": null; "update:direction": null; "update:duration": null; "update:easing": null; "update:from": null; "update:staggerDelay": null; "update:start": null; "update:to": null; "update:type": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly void>; delay: NumberConstructor; direction: PropType; duration: NumberConstructor; easing: StringConstructor; from: PropType | AnimationState>; staggerDelay: NumberConstructor; start: PropType<($element: any, config: AnimationConfig) => void>; to: PropType | AnimationState>; type: PropType; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:type"?: ((...args: any[]) => any) | undefined; "onUpdate:from"?: ((...args: any[]) => any) | undefined; "onUpdate:to"?: ((...args: any[]) => any) | undefined; "onUpdate:complete"?: ((...args: any[]) => any) | undefined; "onUpdate:delay"?: ((...args: any[]) => any) | undefined; "onUpdate:direction"?: ((...args: any[]) => any) | undefined; "onUpdate:duration"?: ((...args: any[]) => any) | undefined; "onUpdate:easing"?: ((...args: any[]) => any) | undefined; "onUpdate:staggerDelay"?: ((...args: any[]) => any) | undefined; "onUpdate:start"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxMy: import("vue").DefineComponent<{ x: PropType; y: PropType; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:x": null; "update:y": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; y: PropType; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:x"?: ((...args: any[]) => any) | undefined; "onUpdate:y"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxOffset: import("vue").DefineComponent<{ x: NumberConstructor; y: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:x": null; "update:y": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:x"?: ((...args: any[]) => any) | undefined; "onUpdate:y"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxOptions: import("vue").DefineComponent<{ accessKey: StringConstructor; activeStateEnabled: BooleanConstructor; disabled: BooleanConstructor; elementAttr: PropType>; focusStateEnabled: BooleanConstructor; height: (NumberConstructor | StringConstructor)[]; hint: StringConstructor; hoverStateEnabled: BooleanConstructor; icon: StringConstructor; onClick: PropType<(e: ClickEvent) => void>; onContentReady: PropType<(e: ButtonContentReadyEvent) => void>; onDisposing: PropType<(e: ButtonDisposingEvent) => void>; onInitialized: PropType<(e: ButtonInitializedEvent) => void>; onOptionChanged: PropType<(e: ButtonOptionChangedEvent) => void>; rtlEnabled: BooleanConstructor; stylingMode: PropType; tabIndex: NumberConstructor; template: {}; text: StringConstructor; type: PropType; useSubmitBehavior: BooleanConstructor; validationGroup: StringConstructor; visible: BooleanConstructor; width: (NumberConstructor | StringConstructor)[]; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:accessKey": null; "update:activeStateEnabled": null; "update:disabled": null; "update:elementAttr": null; "update:focusStateEnabled": null; "update:height": null; "update:hint": null; "update:hoverStateEnabled": null; "update:icon": null; "update:onClick": null; "update:onContentReady": null; "update:onDisposing": null; "update:onInitialized": null; "update:onOptionChanged": null; "update:rtlEnabled": null; "update:stylingMode": null; "update:tabIndex": null; "update:template": null; "update:text": null; "update:type": null; "update:useSubmitBehavior": null; "update:validationGroup": null; "update:visible": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly>; focusStateEnabled: BooleanConstructor; height: (NumberConstructor | StringConstructor)[]; hint: StringConstructor; hoverStateEnabled: BooleanConstructor; icon: StringConstructor; onClick: PropType<(e: ClickEvent) => void>; onContentReady: PropType<(e: ButtonContentReadyEvent) => void>; onDisposing: PropType<(e: ButtonDisposingEvent) => void>; onInitialized: PropType<(e: ButtonInitializedEvent) => void>; onOptionChanged: PropType<(e: ButtonOptionChangedEvent) => void>; rtlEnabled: BooleanConstructor; stylingMode: PropType; tabIndex: NumberConstructor; template: {}; text: StringConstructor; type: PropType; useSubmitBehavior: BooleanConstructor; validationGroup: StringConstructor; visible: BooleanConstructor; width: (NumberConstructor | StringConstructor)[]; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:disabled"?: ((...args: any[]) => any) | undefined; "onUpdate:elementAttr"?: ((...args: any[]) => any) | undefined; "onUpdate:onClick"?: ((...args: any[]) => any) | undefined; "onUpdate:onDisposing"?: ((...args: any[]) => any) | undefined; "onUpdate:onInitialized"?: ((...args: any[]) => any) | undefined; "onUpdate:onOptionChanged"?: ((...args: any[]) => any) | undefined; "onUpdate:rtlEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:height"?: ((...args: any[]) => any) | undefined; "onUpdate:template"?: ((...args: any[]) => any) | undefined; "onUpdate:text"?: ((...args: any[]) => any) | undefined; "onUpdate:type"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:validationGroup"?: ((...args: any[]) => any) | undefined; "onUpdate:hoverStateEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:onContentReady"?: ((...args: any[]) => any) | undefined; "onUpdate:accessKey"?: ((...args: any[]) => any) | undefined; "onUpdate:activeStateEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:focusStateEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:hint"?: ((...args: any[]) => any) | undefined; "onUpdate:tabIndex"?: ((...args: any[]) => any) | undefined; "onUpdate:icon"?: ((...args: any[]) => any) | undefined; "onUpdate:stylingMode"?: ((...args: any[]) => any) | undefined; "onUpdate:useSubmitBehavior"?: ((...args: any[]) => any) | undefined; }, { disabled: boolean; rtlEnabled: boolean; visible: boolean; hoverStateEnabled: boolean; activeStateEnabled: boolean; focusStateEnabled: boolean; useSubmitBehavior: boolean; }>; declare const DxPosition: import("vue").DefineComponent<{ at: PropType | PositionAlignment>; boundary: {}; boundaryOffset: PropType>; collision: PropType | CollisionResolutionCombination>; my: PropType | PositionAlignment>; of: {}; offset: PropType>; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:at": null; "update:boundary": null; "update:boundaryOffset": null; "update:collision": null; "update:my": null; "update:of": null; "update:offset": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly | PositionAlignment>; boundary: {}; boundaryOffset: PropType>; collision: PropType | CollisionResolutionCombination>; my: PropType | PositionAlignment>; of: {}; offset: PropType>; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:offset"?: ((...args: any[]) => any) | undefined; "onUpdate:at"?: ((...args: any[]) => any) | undefined; "onUpdate:boundary"?: ((...args: any[]) => any) | undefined; "onUpdate:boundaryOffset"?: ((...args: any[]) => any) | undefined; "onUpdate:collision"?: ((...args: any[]) => any) | undefined; "onUpdate:my"?: ((...args: any[]) => any) | undefined; "onUpdate:of"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxShow: import("vue").DefineComponent<{ complete: PropType<($element: any, config: AnimationConfig) => void>; delay: NumberConstructor; direction: PropType; duration: NumberConstructor; easing: StringConstructor; from: PropType | AnimationState>; staggerDelay: NumberConstructor; start: PropType<($element: any, config: AnimationConfig) => void>; to: PropType | AnimationState>; type: PropType; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:complete": null; "update:delay": null; "update:direction": null; "update:duration": null; "update:easing": null; "update:from": null; "update:staggerDelay": null; "update:start": null; "update:to": null; "update:type": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly void>; delay: NumberConstructor; direction: PropType; duration: NumberConstructor; easing: StringConstructor; from: PropType | AnimationState>; staggerDelay: NumberConstructor; start: PropType<($element: any, config: AnimationConfig) => void>; to: PropType | AnimationState>; type: PropType; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:type"?: ((...args: any[]) => any) | undefined; "onUpdate:from"?: ((...args: any[]) => any) | undefined; "onUpdate:to"?: ((...args: any[]) => any) | undefined; "onUpdate:complete"?: ((...args: any[]) => any) | undefined; "onUpdate:delay"?: ((...args: any[]) => any) | undefined; "onUpdate:direction"?: ((...args: any[]) => any) | undefined; "onUpdate:duration"?: ((...args: any[]) => any) | undefined; "onUpdate:easing"?: ((...args: any[]) => any) | undefined; "onUpdate:staggerDelay"?: ((...args: any[]) => any) | undefined; "onUpdate:start"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxTo: import("vue").DefineComponent<{ left: NumberConstructor; opacity: NumberConstructor; position: PropType | PositionConfig>; scale: NumberConstructor; top: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:left": null; "update:opacity": null; "update:position": null; "update:scale": null; "update:top": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly | PositionConfig>; scale: NumberConstructor; top: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:opacity"?: ((...args: any[]) => any) | undefined; "onUpdate:left"?: ((...args: any[]) => any) | undefined; "onUpdate:top"?: ((...args: any[]) => any) | undefined; "onUpdate:position"?: ((...args: any[]) => any) | undefined; "onUpdate:scale"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxToolbarItem: import("vue").DefineComponent<{ cssClass: StringConstructor; disabled: BooleanConstructor; html: StringConstructor; locateInMenu: PropType; location: PropType; menuItemTemplate: {}; options: {}; showText: PropType; template: {}; text: StringConstructor; toolbar: PropType; visible: BooleanConstructor; widget: PropType; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:cssClass": null; "update:disabled": null; "update:html": null; "update:locateInMenu": null; "update:location": null; "update:menuItemTemplate": null; "update:options": null; "update:showText": null; "update:template": null; "update:text": null; "update:toolbar": null; "update:visible": null; "update:widget": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; location: PropType; menuItemTemplate: {}; options: {}; showText: PropType; template: {}; text: StringConstructor; toolbar: PropType; visible: BooleanConstructor; widget: PropType; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:disabled"?: ((...args: any[]) => any) | undefined; "onUpdate:template"?: ((...args: any[]) => any) | undefined; "onUpdate:text"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:html"?: ((...args: any[]) => any) | undefined; "onUpdate:location"?: ((...args: any[]) => any) | undefined; "onUpdate:options"?: ((...args: any[]) => any) | undefined; "onUpdate:toolbar"?: ((...args: any[]) => any) | undefined; "onUpdate:cssClass"?: ((...args: any[]) => any) | undefined; "onUpdate:locateInMenu"?: ((...args: any[]) => any) | undefined; "onUpdate:menuItemTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:showText"?: ((...args: any[]) => any) | undefined; "onUpdate:widget"?: ((...args: any[]) => any) | undefined; }, { disabled: boolean; visible: boolean; }>; export default DxDateRangeBox; export { DxDateRangeBox, DxAnimation, DxAt, DxBoundaryOffset, DxButton, DxCalendarOptions, DxCollision, DxDisplayFormat, DxDropDownOptions, DxFrom, DxHide, DxMy, DxOffset, DxOptions, DxPosition, DxShow, DxTo, DxToolbarItem }; import type * as DxDateRangeBoxTypes from "devextreme/ui/date_range_box_types"; export { DxDateRangeBoxTypes };