/*! * 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 Scheduler, { Properties } from "devextreme/ui/scheduler"; import DataSource from "devextreme/data/data_source"; import dxScheduler from "devextreme/ui/scheduler"; import dxSortable from "devextreme/ui/sortable"; import dxDraggable from "devextreme/ui/draggable"; import { AllDayPanelMode, ViewType, dxSchedulerAppointment, CellAppointmentsLimit, AppointmentAddedEvent, AppointmentAddingEvent, AppointmentClickEvent, AppointmentContextMenuEvent, AppointmentDblClickEvent, AppointmentDeletedEvent, AppointmentDeletingEvent, AppointmentFormOpeningEvent, AppointmentRenderedEvent, AppointmentTooltipShowingEvent, AppointmentUpdatedEvent, AppointmentUpdatingEvent, CellClickEvent, CellContextMenuEvent, ContentReadyEvent, DisposingEvent, InitializedEvent, OptionChangedEvent, RecurrenceEditMode, dxSchedulerScrolling, AppointmentFormIconsShowMode, SchedulerPredefinedToolbarItem, DateNavigatorItemProperties, SchedulerPredefinedDateNavigatorItem } from "devextreme/ui/scheduler"; import { DataSourceOptions } from "devextreme/common/data"; import { Store } from "devextreme/data/store"; import { FirstDayOfWeek, ValidationRuleType, HorizontalAlignment, VerticalAlignment, ButtonStyle, ComparisonOperator, ToolbarItemLocation, ToolbarItemComponent, SingleMultipleOrNone, ScrollMode, TabsIconPosition, TabsStyle, Position, Orientation } from "devextreme/common"; import { event } from "devextreme/events/events.types"; import { dxButtonOptions, ClickEvent, ContentReadyEvent as ButtonContentReadyEvent, DisposingEvent as ButtonDisposingEvent, InitializedEvent as ButtonInitializedEvent, OptionChangedEvent as ButtonOptionChangedEvent } from "devextreme/ui/button"; import { FormItemType, dxFormSimpleItem, dxFormGroupItem, dxFormTabbedItem, dxFormEmptyItem, dxFormButtonItem, LabelLocation, FormLabelMode, ContentReadyEvent as FormContentReadyEvent, DisposingEvent as FormDisposingEvent, EditorEnterKeyEvent, FieldDataChangedEvent, InitializedEvent as FormInitializedEvent, OptionChangedEvent as FormOptionChangedEvent, SmartPastedEvent, SmartPastingEvent, FormItemComponent } from "devextreme/ui/form"; import { AIIntegration } from "devextreme/common/ai-integration"; import { dxTabPanelOptions, ContentReadyEvent as TabPanelContentReadyEvent, DisposingEvent as TabPanelDisposingEvent, InitializedEvent as TabPanelInitializedEvent, ItemClickEvent as TabPanelItemClickEvent, ItemContextMenuEvent, ItemHoldEvent, ItemRenderedEvent, OptionChangedEvent as TabPanelOptionChangedEvent, SelectionChangedEvent as TabPanelSelectionChangedEvent, SelectionChangingEvent, TitleClickEvent, TitleHoldEvent, TitleRenderedEvent } from "devextreme/ui/tab_panel"; import { LocateInMenuMode, ShowTextMode } from "devextreme/ui/toolbar"; import { dxButtonGroupOptions, dxButtonGroupItem, ContentReadyEvent as ButtonGroupContentReadyEvent, DisposingEvent as ButtonGroupDisposingEvent, InitializedEvent as ButtonGroupInitializedEvent, ItemClickEvent, OptionChangedEvent as ButtonGroupOptionChangedEvent, SelectionChangedEvent } from "devextreme/ui/button_group"; import * as CommonTypes from "devextreme/common"; type AccessibleOptions = Pick; interface DxScheduler extends AccessibleOptions { readonly instance?: Scheduler; } declare const DxScheduler: import("vue").DefineComponent<{ accessKey: StringConstructor; adaptivityEnabled: BooleanConstructor; allDayExpr: StringConstructor; allDayPanelMode: PropType; appointmentCollectorTemplate: {}; appointmentDragging: PropType>; appointmentTemplate: {}; appointmentTooltipTemplate: {}; cellDuration: NumberConstructor; crossScrollingEnabled: BooleanConstructor; currentDate: (DateConstructor | NumberConstructor | StringConstructor)[]; currentView: PropType; customizeDateNavigatorText: PropType<(info: { endDate: Date; startDate: Date; text: string; }) => string>; dataCellTemplate: {}; dataSource: PropType | DataSource | DataSourceOptions | Store | dxSchedulerAppointment[] | null>; dateCellTemplate: {}; dateSerializationFormat: StringConstructor; descriptionExpr: StringConstructor; disabled: BooleanConstructor; editing: PropType>; elementAttr: PropType>; endDateExpr: StringConstructor; endDateTimeZoneExpr: StringConstructor; endDayHour: NumberConstructor; firstDayOfWeek: PropType; focusStateEnabled: BooleanConstructor; groupByDate: BooleanConstructor; groups: PropType; height: (NumberConstructor | StringConstructor)[]; hint: StringConstructor; indicatorUpdateInterval: NumberConstructor; max: (DateConstructor | NumberConstructor | StringConstructor)[]; maxAppointmentsPerCell: PropType; min: (DateConstructor | NumberConstructor | StringConstructor)[]; noDataText: StringConstructor; offset: NumberConstructor; onAppointmentAdded: PropType<(e: AppointmentAddedEvent) => void>; onAppointmentAdding: PropType<(e: AppointmentAddingEvent) => void>; onAppointmentClick: PropType<(e: AppointmentClickEvent) => void>; onAppointmentContextMenu: PropType<(e: AppointmentContextMenuEvent) => void>; onAppointmentDblClick: PropType<(e: AppointmentDblClickEvent) => void>; onAppointmentDeleted: PropType<(e: AppointmentDeletedEvent) => void>; onAppointmentDeleting: PropType<(e: AppointmentDeletingEvent) => void>; onAppointmentFormOpening: PropType<(e: AppointmentFormOpeningEvent) => void>; onAppointmentRendered: PropType<(e: AppointmentRenderedEvent) => void>; onAppointmentTooltipShowing: PropType<(e: AppointmentTooltipShowingEvent) => void>; onAppointmentUpdated: PropType<(e: AppointmentUpdatedEvent) => void>; onAppointmentUpdating: PropType<(e: AppointmentUpdatingEvent) => void>; onCellClick: PropType<(e: CellClickEvent) => void>; onCellContextMenu: PropType<(e: CellContextMenuEvent) => void>; onContentReady: PropType<(e: ContentReadyEvent) => void>; onDisposing: PropType<(e: DisposingEvent) => void>; onInitialized: PropType<(e: InitializedEvent) => void>; onOptionChanged: PropType<(e: OptionChangedEvent) => void>; recurrenceEditMode: PropType; recurrenceExceptionExpr: StringConstructor; recurrenceRuleExpr: StringConstructor; remoteFiltering: BooleanConstructor; resourceCellTemplate: {}; resources: PropType[]>; rtlEnabled: BooleanConstructor; scrolling: PropType; selectedCellData: PropType; shadeUntilCurrentTime: BooleanConstructor; showAllDayPanel: BooleanConstructor; showCurrentTimeIndicator: BooleanConstructor; startDateExpr: StringConstructor; startDateTimeZoneExpr: StringConstructor; startDayHour: NumberConstructor; tabIndex: NumberConstructor; textExpr: StringConstructor; timeCellTemplate: {}; timeZone: StringConstructor; toolbar: PropType | DxSchedulerTypes.Toolbar>; useDropDownViewSwitcher: BooleanConstructor; views: PropType<(string | Record)[]>; visible: BooleanConstructor; width: (NumberConstructor | StringConstructor)[]; }, unknown, unknown, { instance(): Scheduler; }, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:accessKey": null; "update:adaptivityEnabled": null; "update:allDayExpr": null; "update:allDayPanelMode": null; "update:appointmentCollectorTemplate": null; "update:appointmentDragging": null; "update:appointmentTemplate": null; "update:appointmentTooltipTemplate": null; "update:cellDuration": null; "update:crossScrollingEnabled": null; "update:currentDate": null; "update:currentView": null; "update:customizeDateNavigatorText": null; "update:dataCellTemplate": null; "update:dataSource": null; "update:dateCellTemplate": null; "update:dateSerializationFormat": null; "update:descriptionExpr": null; "update:disabled": null; "update:editing": null; "update:elementAttr": null; "update:endDateExpr": null; "update:endDateTimeZoneExpr": null; "update:endDayHour": null; "update:firstDayOfWeek": null; "update:focusStateEnabled": null; "update:groupByDate": null; "update:groups": null; "update:height": null; "update:hint": null; "update:indicatorUpdateInterval": null; "update:max": null; "update:maxAppointmentsPerCell": null; "update:min": null; "update:noDataText": null; "update:offset": null; "update:onAppointmentAdded": null; "update:onAppointmentAdding": null; "update:onAppointmentClick": null; "update:onAppointmentContextMenu": null; "update:onAppointmentDblClick": null; "update:onAppointmentDeleted": null; "update:onAppointmentDeleting": null; "update:onAppointmentFormOpening": null; "update:onAppointmentRendered": null; "update:onAppointmentTooltipShowing": null; "update:onAppointmentUpdated": null; "update:onAppointmentUpdating": null; "update:onCellClick": null; "update:onCellContextMenu": null; "update:onContentReady": null; "update:onDisposing": null; "update:onInitialized": null; "update:onOptionChanged": null; "update:recurrenceEditMode": null; "update:recurrenceExceptionExpr": null; "update:recurrenceRuleExpr": null; "update:remoteFiltering": null; "update:resourceCellTemplate": null; "update:resources": null; "update:rtlEnabled": null; "update:scrolling": null; "update:selectedCellData": null; "update:shadeUntilCurrentTime": null; "update:showAllDayPanel": null; "update:showCurrentTimeIndicator": null; "update:startDateExpr": null; "update:startDateTimeZoneExpr": null; "update:startDayHour": null; "update:tabIndex": null; "update:textExpr": null; "update:timeCellTemplate": null; "update:timeZone": null; "update:toolbar": null; "update:useDropDownViewSwitcher": null; "update:views": null; "update:visible": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; appointmentCollectorTemplate: {}; appointmentDragging: PropType>; appointmentTemplate: {}; appointmentTooltipTemplate: {}; cellDuration: NumberConstructor; crossScrollingEnabled: BooleanConstructor; currentDate: (DateConstructor | NumberConstructor | StringConstructor)[]; currentView: PropType; customizeDateNavigatorText: PropType<(info: { endDate: Date; startDate: Date; text: string; }) => string>; dataCellTemplate: {}; dataSource: PropType | DataSource | DataSourceOptions | Store | dxSchedulerAppointment[] | null>; dateCellTemplate: {}; dateSerializationFormat: StringConstructor; descriptionExpr: StringConstructor; disabled: BooleanConstructor; editing: PropType>; elementAttr: PropType>; endDateExpr: StringConstructor; endDateTimeZoneExpr: StringConstructor; endDayHour: NumberConstructor; firstDayOfWeek: PropType; focusStateEnabled: BooleanConstructor; groupByDate: BooleanConstructor; groups: PropType; height: (NumberConstructor | StringConstructor)[]; hint: StringConstructor; indicatorUpdateInterval: NumberConstructor; max: (DateConstructor | NumberConstructor | StringConstructor)[]; maxAppointmentsPerCell: PropType; min: (DateConstructor | NumberConstructor | StringConstructor)[]; noDataText: StringConstructor; offset: NumberConstructor; onAppointmentAdded: PropType<(e: AppointmentAddedEvent) => void>; onAppointmentAdding: PropType<(e: AppointmentAddingEvent) => void>; onAppointmentClick: PropType<(e: AppointmentClickEvent) => void>; onAppointmentContextMenu: PropType<(e: AppointmentContextMenuEvent) => void>; onAppointmentDblClick: PropType<(e: AppointmentDblClickEvent) => void>; onAppointmentDeleted: PropType<(e: AppointmentDeletedEvent) => void>; onAppointmentDeleting: PropType<(e: AppointmentDeletingEvent) => void>; onAppointmentFormOpening: PropType<(e: AppointmentFormOpeningEvent) => void>; onAppointmentRendered: PropType<(e: AppointmentRenderedEvent) => void>; onAppointmentTooltipShowing: PropType<(e: AppointmentTooltipShowingEvent) => void>; onAppointmentUpdated: PropType<(e: AppointmentUpdatedEvent) => void>; onAppointmentUpdating: PropType<(e: AppointmentUpdatingEvent) => void>; onCellClick: PropType<(e: CellClickEvent) => void>; onCellContextMenu: PropType<(e: CellContextMenuEvent) => void>; onContentReady: PropType<(e: ContentReadyEvent) => void>; onDisposing: PropType<(e: DisposingEvent) => void>; onInitialized: PropType<(e: InitializedEvent) => void>; onOptionChanged: PropType<(e: OptionChangedEvent) => void>; recurrenceEditMode: PropType; recurrenceExceptionExpr: StringConstructor; recurrenceRuleExpr: StringConstructor; remoteFiltering: BooleanConstructor; resourceCellTemplate: {}; resources: PropType[]>; rtlEnabled: BooleanConstructor; scrolling: PropType; selectedCellData: PropType; shadeUntilCurrentTime: BooleanConstructor; showAllDayPanel: BooleanConstructor; showCurrentTimeIndicator: BooleanConstructor; startDateExpr: StringConstructor; startDateTimeZoneExpr: StringConstructor; startDayHour: NumberConstructor; tabIndex: NumberConstructor; textExpr: StringConstructor; timeCellTemplate: {}; timeZone: StringConstructor; toolbar: PropType | DxSchedulerTypes.Toolbar>; useDropDownViewSwitcher: BooleanConstructor; views: PropType<(string | Record)[]>; 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:dataSource"?: ((...args: any[]) => any) | undefined; "onUpdate:offset"?: ((...args: any[]) => any) | undefined; "onUpdate:max"?: ((...args: any[]) => any) | undefined; "onUpdate:min"?: ((...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:noDataText"?: ((...args: any[]) => any) | undefined; "onUpdate:tabIndex"?: ((...args: any[]) => any) | undefined; "onUpdate:dateSerializationFormat"?: ((...args: any[]) => any) | undefined; "onUpdate:editing"?: ((...args: any[]) => any) | undefined; "onUpdate:onCellClick"?: ((...args: any[]) => any) | undefined; "onUpdate:scrolling"?: ((...args: any[]) => any) | undefined; "onUpdate:toolbar"?: ((...args: any[]) => any) | undefined; "onUpdate:adaptivityEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:allDayExpr"?: ((...args: any[]) => any) | undefined; "onUpdate:allDayPanelMode"?: ((...args: any[]) => any) | undefined; "onUpdate:appointmentCollectorTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:appointmentDragging"?: ((...args: any[]) => any) | undefined; "onUpdate:appointmentTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:appointmentTooltipTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:cellDuration"?: ((...args: any[]) => any) | undefined; "onUpdate:crossScrollingEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:currentDate"?: ((...args: any[]) => any) | undefined; "onUpdate:currentView"?: ((...args: any[]) => any) | undefined; "onUpdate:customizeDateNavigatorText"?: ((...args: any[]) => any) | undefined; "onUpdate:dataCellTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:dateCellTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:descriptionExpr"?: ((...args: any[]) => any) | undefined; "onUpdate:endDateExpr"?: ((...args: any[]) => any) | undefined; "onUpdate:endDateTimeZoneExpr"?: ((...args: any[]) => any) | undefined; "onUpdate:endDayHour"?: ((...args: any[]) => any) | undefined; "onUpdate:firstDayOfWeek"?: ((...args: any[]) => any) | undefined; "onUpdate:groupByDate"?: ((...args: any[]) => any) | undefined; "onUpdate:groups"?: ((...args: any[]) => any) | undefined; "onUpdate:indicatorUpdateInterval"?: ((...args: any[]) => any) | undefined; "onUpdate:maxAppointmentsPerCell"?: ((...args: any[]) => any) | undefined; "onUpdate:onAppointmentAdded"?: ((...args: any[]) => any) | undefined; "onUpdate:onAppointmentAdding"?: ((...args: any[]) => any) | undefined; "onUpdate:onAppointmentClick"?: ((...args: any[]) => any) | undefined; "onUpdate:onAppointmentContextMenu"?: ((...args: any[]) => any) | undefined; "onUpdate:onAppointmentDblClick"?: ((...args: any[]) => any) | undefined; "onUpdate:onAppointmentDeleted"?: ((...args: any[]) => any) | undefined; "onUpdate:onAppointmentDeleting"?: ((...args: any[]) => any) | undefined; "onUpdate:onAppointmentFormOpening"?: ((...args: any[]) => any) | undefined; "onUpdate:onAppointmentRendered"?: ((...args: any[]) => any) | undefined; "onUpdate:onAppointmentTooltipShowing"?: ((...args: any[]) => any) | undefined; "onUpdate:onAppointmentUpdated"?: ((...args: any[]) => any) | undefined; "onUpdate:onAppointmentUpdating"?: ((...args: any[]) => any) | undefined; "onUpdate:onCellContextMenu"?: ((...args: any[]) => any) | undefined; "onUpdate:recurrenceEditMode"?: ((...args: any[]) => any) | undefined; "onUpdate:recurrenceExceptionExpr"?: ((...args: any[]) => any) | undefined; "onUpdate:recurrenceRuleExpr"?: ((...args: any[]) => any) | undefined; "onUpdate:remoteFiltering"?: ((...args: any[]) => any) | undefined; "onUpdate:resourceCellTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:resources"?: ((...args: any[]) => any) | undefined; "onUpdate:selectedCellData"?: ((...args: any[]) => any) | undefined; "onUpdate:shadeUntilCurrentTime"?: ((...args: any[]) => any) | undefined; "onUpdate:showAllDayPanel"?: ((...args: any[]) => any) | undefined; "onUpdate:showCurrentTimeIndicator"?: ((...args: any[]) => any) | undefined; "onUpdate:startDateExpr"?: ((...args: any[]) => any) | undefined; "onUpdate:startDateTimeZoneExpr"?: ((...args: any[]) => any) | undefined; "onUpdate:startDayHour"?: ((...args: any[]) => any) | undefined; "onUpdate:textExpr"?: ((...args: any[]) => any) | undefined; "onUpdate:timeCellTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:timeZone"?: ((...args: any[]) => any) | undefined; "onUpdate:useDropDownViewSwitcher"?: ((...args: any[]) => any) | undefined; "onUpdate:views"?: ((...args: any[]) => any) | undefined; }, { disabled: boolean; rtlEnabled: boolean; visible: boolean; focusStateEnabled: boolean; adaptivityEnabled: boolean; crossScrollingEnabled: boolean; groupByDate: boolean; remoteFiltering: boolean; shadeUntilCurrentTime: boolean; showAllDayPanel: boolean; showCurrentTimeIndicator: boolean; useDropDownViewSwitcher: boolean; }>; declare const DxAIOptions: import("vue").DefineComponent<{ disabled: BooleanConstructor; instruction: StringConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:disabled": null; "update:instruction": 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:disabled"?: ((...args: any[]) => any) | undefined; "onUpdate:instruction"?: ((...args: any[]) => any) | undefined; }, { disabled: boolean; }>; declare const DxAppointmentDragging: import("vue").DefineComponent<{ autoScroll: BooleanConstructor; data: {}; group: StringConstructor; onAdd: PropType<(e: { component: dxScheduler; event: event; fromComponent: dxSortable | dxDraggable; fromData: any; itemData: any; itemElement: any; toComponent: dxSortable | dxDraggable; toData: any; }) => void>; onDragEnd: PropType<(e: { cancel: boolean; component: dxScheduler; event: event; fromComponent: dxSortable | dxDraggable; fromData: any; itemData: any; itemElement: any; toComponent: dxSortable | dxDraggable; toData: any; toItemData: any; }) => void>; onDragMove: PropType<(e: { cancel: boolean; component: dxScheduler; event: event; fromComponent: dxSortable | dxDraggable; fromData: any; itemData: any; itemElement: any; toComponent: dxSortable | dxDraggable; toData: any; }) => void>; onDragStart: PropType<(e: { cancel: boolean; component: dxScheduler; event: event; fromData: any; itemData: any; itemElement: any; }) => void>; onRemove: PropType<(e: { component: dxScheduler; event: event; fromComponent: dxSortable | dxDraggable; fromData: any; itemData: any; itemElement: any; toComponent: dxSortable | dxDraggable; }) => void>; scrollSensitivity: NumberConstructor; scrollSpeed: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:autoScroll": null; "update:data": null; "update:group": null; "update:onAdd": null; "update:onDragEnd": null; "update:onDragMove": null; "update:onDragStart": null; "update:onRemove": null; "update:scrollSensitivity": null; "update:scrollSpeed": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly void>; onDragEnd: PropType<(e: { cancel: boolean; component: dxScheduler; event: event; fromComponent: dxSortable | dxDraggable; fromData: any; itemData: any; itemElement: any; toComponent: dxSortable | dxDraggable; toData: any; toItemData: any; }) => void>; onDragMove: PropType<(e: { cancel: boolean; component: dxScheduler; event: event; fromComponent: dxSortable | dxDraggable; fromData: any; itemData: any; itemElement: any; toComponent: dxSortable | dxDraggable; toData: any; }) => void>; onDragStart: PropType<(e: { cancel: boolean; component: dxScheduler; event: event; fromData: any; itemData: any; itemElement: any; }) => void>; onRemove: PropType<(e: { component: dxScheduler; event: event; fromComponent: dxSortable | dxDraggable; fromData: any; itemData: any; itemElement: any; toComponent: dxSortable | dxDraggable; }) => void>; scrollSensitivity: NumberConstructor; scrollSpeed: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:data"?: ((...args: any[]) => any) | undefined; "onUpdate:group"?: ((...args: any[]) => any) | undefined; "onUpdate:autoScroll"?: ((...args: any[]) => any) | undefined; "onUpdate:onAdd"?: ((...args: any[]) => any) | undefined; "onUpdate:onDragEnd"?: ((...args: any[]) => any) | undefined; "onUpdate:onDragMove"?: ((...args: any[]) => any) | undefined; "onUpdate:onDragStart"?: ((...args: any[]) => any) | undefined; "onUpdate:onRemove"?: ((...args: any[]) => any) | undefined; "onUpdate:scrollSensitivity"?: ((...args: any[]) => any) | undefined; "onUpdate:scrollSpeed"?: ((...args: any[]) => any) | undefined; }, { autoScroll: boolean; }>; declare const DxAsyncRule: import("vue").DefineComponent<{ ignoreEmptyValue: BooleanConstructor; message: StringConstructor; reevaluate: BooleanConstructor; type: PropType; validationCallback: PropType<(options: { column: Record; data: Record; formItem: Record; rule: Record; validator: Record; value: any; }) => any>; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:ignoreEmptyValue": null; "update:message": null; "update:reevaluate": null; "update:type": null; "update:validationCallback": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; validationCallback: PropType<(options: { column: Record; data: Record; formItem: Record; rule: Record; validator: Record; value: any; }) => any>; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:type"?: ((...args: any[]) => any) | undefined; "onUpdate:ignoreEmptyValue"?: ((...args: any[]) => any) | undefined; "onUpdate:message"?: ((...args: any[]) => any) | undefined; "onUpdate:reevaluate"?: ((...args: any[]) => any) | undefined; "onUpdate:validationCallback"?: ((...args: any[]) => any) | undefined; }, { ignoreEmptyValue: boolean; reevaluate: boolean; }>; declare const DxButtonItem: import("vue").DefineComponent<{ buttonOptions: PropType | dxButtonOptions>; colSpan: NumberConstructor; cssClass: StringConstructor; horizontalAlignment: PropType; itemType: PropType; name: PropType; verticalAlignment: PropType; visible: BooleanConstructor; visibleIndex: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:buttonOptions": null; "update:colSpan": null; "update:cssClass": null; "update:horizontalAlignment": null; "update:itemType": null; "update:name": null; "update:verticalAlignment": null; "update:visible": null; "update:visibleIndex": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly | dxButtonOptions>; colSpan: NumberConstructor; cssClass: StringConstructor; horizontalAlignment: PropType; itemType: PropType; name: PropType; verticalAlignment: PropType; visible: BooleanConstructor; visibleIndex: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:name"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:horizontalAlignment"?: ((...args: any[]) => any) | undefined; "onUpdate:verticalAlignment"?: ((...args: any[]) => any) | undefined; "onUpdate:cssClass"?: ((...args: any[]) => any) | undefined; "onUpdate:buttonOptions"?: ((...args: any[]) => any) | undefined; "onUpdate:colSpan"?: ((...args: any[]) => any) | undefined; "onUpdate:itemType"?: ((...args: any[]) => any) | undefined; "onUpdate:visibleIndex"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; }>; declare const DxButtonOptions: 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 DxColCountByScreen: import("vue").DefineComponent<{ lg: NumberConstructor; md: NumberConstructor; sm: NumberConstructor; xs: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:lg": null; "update:md": null; "update:sm": null; "update:xs": 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:lg"?: ((...args: any[]) => any) | undefined; "onUpdate:md"?: ((...args: any[]) => any) | undefined; "onUpdate:sm"?: ((...args: any[]) => any) | undefined; "onUpdate:xs"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxCompareRule: import("vue").DefineComponent<{ comparisonTarget: PropType<() => any>; comparisonType: PropType; ignoreEmptyValue: BooleanConstructor; message: StringConstructor; type: PropType; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:comparisonTarget": null; "update:comparisonType": null; "update:ignoreEmptyValue": null; "update:message": null; "update:type": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly any>; comparisonType: PropType; ignoreEmptyValue: BooleanConstructor; message: StringConstructor; type: PropType; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:type"?: ((...args: any[]) => any) | undefined; "onUpdate:ignoreEmptyValue"?: ((...args: any[]) => any) | undefined; "onUpdate:message"?: ((...args: any[]) => any) | undefined; "onUpdate:comparisonTarget"?: ((...args: any[]) => any) | undefined; "onUpdate:comparisonType"?: ((...args: any[]) => any) | undefined; }, { ignoreEmptyValue: boolean; }>; declare const DxCustomRule: import("vue").DefineComponent<{ ignoreEmptyValue: BooleanConstructor; message: StringConstructor; reevaluate: BooleanConstructor; type: PropType; validationCallback: PropType<(options: { column: Record; data: Record; formItem: Record; rule: Record; validator: Record; value: any; }) => boolean>; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:ignoreEmptyValue": null; "update:message": null; "update:reevaluate": null; "update:type": null; "update:validationCallback": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; validationCallback: PropType<(options: { column: Record; data: Record; formItem: Record; rule: Record; validator: Record; value: any; }) => boolean>; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:type"?: ((...args: any[]) => any) | undefined; "onUpdate:ignoreEmptyValue"?: ((...args: any[]) => any) | undefined; "onUpdate:message"?: ((...args: any[]) => any) | undefined; "onUpdate:reevaluate"?: ((...args: any[]) => any) | undefined; "onUpdate:validationCallback"?: ((...args: any[]) => any) | undefined; }, { ignoreEmptyValue: boolean; reevaluate: boolean; }>; declare const DxEditing: import("vue").DefineComponent<{ allowAdding: BooleanConstructor; allowDeleting: BooleanConstructor; allowDragging: BooleanConstructor; allowResizing: BooleanConstructor; allowTimeZoneEditing: BooleanConstructor; allowUpdating: BooleanConstructor; form: {}; popup: PropType>; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:allowAdding": null; "update:allowDeleting": null; "update:allowDragging": null; "update:allowResizing": null; "update:allowTimeZoneEditing": null; "update:allowUpdating": null; "update:form": null; "update:popup": 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:allowDragging"?: ((...args: any[]) => any) | undefined; "onUpdate:popup"?: ((...args: any[]) => any) | undefined; "onUpdate:allowResizing"?: ((...args: any[]) => any) | undefined; "onUpdate:allowAdding"?: ((...args: any[]) => any) | undefined; "onUpdate:allowDeleting"?: ((...args: any[]) => any) | undefined; "onUpdate:allowUpdating"?: ((...args: any[]) => any) | undefined; "onUpdate:form"?: ((...args: any[]) => any) | undefined; "onUpdate:allowTimeZoneEditing"?: ((...args: any[]) => any) | undefined; }, { allowDragging: boolean; allowResizing: boolean; allowAdding: boolean; allowDeleting: boolean; allowUpdating: boolean; allowTimeZoneEditing: boolean; }>; declare const DxEmailRule: import("vue").DefineComponent<{ ignoreEmptyValue: BooleanConstructor; message: StringConstructor; type: PropType; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:ignoreEmptyValue": null; "update:message": null; "update:type": 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:type"?: ((...args: any[]) => any) | undefined; "onUpdate:ignoreEmptyValue"?: ((...args: any[]) => any) | undefined; "onUpdate:message"?: ((...args: any[]) => any) | undefined; }, { ignoreEmptyValue: boolean; }>; declare const DxEmptyItem: import("vue").DefineComponent<{ colSpan: NumberConstructor; cssClass: StringConstructor; itemType: PropType; name: StringConstructor; visible: BooleanConstructor; visibleIndex: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:colSpan": null; "update:cssClass": null; "update:itemType": null; "update:name": null; "update:visible": null; "update:visibleIndex": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; name: StringConstructor; visible: BooleanConstructor; visibleIndex: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:name"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:cssClass"?: ((...args: any[]) => any) | undefined; "onUpdate:colSpan"?: ((...args: any[]) => any) | undefined; "onUpdate:itemType"?: ((...args: any[]) => any) | undefined; "onUpdate:visibleIndex"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; }>; declare const DxForm: import("vue").DefineComponent<{ accessKey: StringConstructor; activeStateEnabled: BooleanConstructor; aiIntegration: PropType; alignItemLabels: BooleanConstructor; alignItemLabelsInAllGroups: BooleanConstructor; colCount: PropType; colCountByScreen: PropType>; customizeItem: PropType<(item: dxFormSimpleItem | dxFormGroupItem | dxFormTabbedItem | dxFormEmptyItem | dxFormButtonItem) => void>; disabled: BooleanConstructor; elementAttr: PropType>; focusStateEnabled: BooleanConstructor; formData: {}; height: (NumberConstructor | StringConstructor)[]; hint: StringConstructor; hoverStateEnabled: BooleanConstructor; iconsShowMode: PropType; isDirty: BooleanConstructor; items: PropType<(dxFormSimpleItem | dxFormGroupItem | dxFormTabbedItem | dxFormEmptyItem | dxFormButtonItem)[]>; labelLocation: PropType; labelMode: PropType; minColWidth: NumberConstructor; onContentReady: PropType<(e: FormContentReadyEvent) => void>; onDisposing: PropType<(e: FormDisposingEvent) => void>; onEditorEnterKey: PropType<(e: EditorEnterKeyEvent) => void>; onFieldDataChanged: PropType<(e: FieldDataChangedEvent) => void>; onInitialized: PropType<(e: FormInitializedEvent) => void>; onOptionChanged: PropType<(e: FormOptionChangedEvent) => void>; onSmartPasted: PropType<(e: SmartPastedEvent) => void>; onSmartPasting: PropType<(e: SmartPastingEvent) => void>; optionalMark: StringConstructor; readOnly: BooleanConstructor; requiredMark: StringConstructor; requiredMessage: StringConstructor; rtlEnabled: BooleanConstructor; screenByWidth: PropType<() => void>; scrollingEnabled: BooleanConstructor; showColonAfterLabel: BooleanConstructor; showOptionalMark: BooleanConstructor; showRequiredMark: BooleanConstructor; showValidationSummary: BooleanConstructor; tabIndex: NumberConstructor; 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:aiIntegration": null; "update:alignItemLabels": null; "update:alignItemLabelsInAllGroups": null; "update:colCount": null; "update:colCountByScreen": null; "update:customizeItem": null; "update:disabled": null; "update:elementAttr": null; "update:focusStateEnabled": null; "update:formData": null; "update:height": null; "update:hint": null; "update:hoverStateEnabled": null; "update:iconsShowMode": null; "update:isDirty": null; "update:items": null; "update:labelLocation": null; "update:labelMode": null; "update:minColWidth": null; "update:onContentReady": null; "update:onDisposing": null; "update:onEditorEnterKey": null; "update:onFieldDataChanged": null; "update:onInitialized": null; "update:onOptionChanged": null; "update:onSmartPasted": null; "update:onSmartPasting": null; "update:optionalMark": null; "update:readOnly": null; "update:requiredMark": null; "update:requiredMessage": null; "update:rtlEnabled": null; "update:screenByWidth": null; "update:scrollingEnabled": null; "update:showColonAfterLabel": null; "update:showOptionalMark": null; "update:showRequiredMark": null; "update:showValidationSummary": null; "update:tabIndex": null; "update:validationGroup": null; "update:visible": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; alignItemLabels: BooleanConstructor; alignItemLabelsInAllGroups: BooleanConstructor; colCount: PropType; colCountByScreen: PropType>; customizeItem: PropType<(item: dxFormSimpleItem | dxFormGroupItem | dxFormTabbedItem | dxFormEmptyItem | dxFormButtonItem) => void>; disabled: BooleanConstructor; elementAttr: PropType>; focusStateEnabled: BooleanConstructor; formData: {}; height: (NumberConstructor | StringConstructor)[]; hint: StringConstructor; hoverStateEnabled: BooleanConstructor; iconsShowMode: PropType; isDirty: BooleanConstructor; items: PropType<(dxFormSimpleItem | dxFormGroupItem | dxFormTabbedItem | dxFormEmptyItem | dxFormButtonItem)[]>; labelLocation: PropType; labelMode: PropType; minColWidth: NumberConstructor; onContentReady: PropType<(e: FormContentReadyEvent) => void>; onDisposing: PropType<(e: FormDisposingEvent) => void>; onEditorEnterKey: PropType<(e: EditorEnterKeyEvent) => void>; onFieldDataChanged: PropType<(e: FieldDataChangedEvent) => void>; onInitialized: PropType<(e: FormInitializedEvent) => void>; onOptionChanged: PropType<(e: FormOptionChangedEvent) => void>; onSmartPasted: PropType<(e: SmartPastedEvent) => void>; onSmartPasting: PropType<(e: SmartPastingEvent) => void>; optionalMark: StringConstructor; readOnly: BooleanConstructor; requiredMark: StringConstructor; requiredMessage: StringConstructor; rtlEnabled: BooleanConstructor; screenByWidth: PropType<() => void>; scrollingEnabled: BooleanConstructor; showColonAfterLabel: BooleanConstructor; showOptionalMark: BooleanConstructor; showRequiredMark: BooleanConstructor; showValidationSummary: BooleanConstructor; tabIndex: NumberConstructor; 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: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:validationGroup"?: ((...args: any[]) => any) | undefined; "onUpdate:hoverStateEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:items"?: ((...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:isDirty"?: ((...args: any[]) => any) | undefined; "onUpdate:labelMode"?: ((...args: any[]) => any) | undefined; "onUpdate:readOnly"?: ((...args: any[]) => any) | undefined; "onUpdate:aiIntegration"?: ((...args: any[]) => any) | undefined; "onUpdate:alignItemLabels"?: ((...args: any[]) => any) | undefined; "onUpdate:alignItemLabelsInAllGroups"?: ((...args: any[]) => any) | undefined; "onUpdate:colCount"?: ((...args: any[]) => any) | undefined; "onUpdate:colCountByScreen"?: ((...args: any[]) => any) | undefined; "onUpdate:customizeItem"?: ((...args: any[]) => any) | undefined; "onUpdate:formData"?: ((...args: any[]) => any) | undefined; "onUpdate:labelLocation"?: ((...args: any[]) => any) | undefined; "onUpdate:minColWidth"?: ((...args: any[]) => any) | undefined; "onUpdate:onEditorEnterKey"?: ((...args: any[]) => any) | undefined; "onUpdate:onFieldDataChanged"?: ((...args: any[]) => any) | undefined; "onUpdate:onSmartPasted"?: ((...args: any[]) => any) | undefined; "onUpdate:onSmartPasting"?: ((...args: any[]) => any) | undefined; "onUpdate:optionalMark"?: ((...args: any[]) => any) | undefined; "onUpdate:requiredMark"?: ((...args: any[]) => any) | undefined; "onUpdate:requiredMessage"?: ((...args: any[]) => any) | undefined; "onUpdate:screenByWidth"?: ((...args: any[]) => any) | undefined; "onUpdate:scrollingEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:showColonAfterLabel"?: ((...args: any[]) => any) | undefined; "onUpdate:showOptionalMark"?: ((...args: any[]) => any) | undefined; "onUpdate:showRequiredMark"?: ((...args: any[]) => any) | undefined; "onUpdate:showValidationSummary"?: ((...args: any[]) => any) | undefined; "onUpdate:iconsShowMode"?: ((...args: any[]) => any) | undefined; }, { disabled: boolean; rtlEnabled: boolean; visible: boolean; hoverStateEnabled: boolean; activeStateEnabled: boolean; focusStateEnabled: boolean; isDirty: boolean; readOnly: boolean; alignItemLabels: boolean; alignItemLabelsInAllGroups: boolean; scrollingEnabled: boolean; showColonAfterLabel: boolean; showOptionalMark: boolean; showRequiredMark: boolean; showValidationSummary: boolean; }>; declare const DxGroupItem: import("vue").DefineComponent<{ alignItemLabels: BooleanConstructor; caption: StringConstructor; captionTemplate: {}; colCount: NumberConstructor; colCountByScreen: PropType>; colSpan: NumberConstructor; cssClass: StringConstructor; items: PropType<(dxFormSimpleItem | dxFormGroupItem | dxFormTabbedItem | dxFormEmptyItem | dxFormButtonItem)[]>; itemType: PropType; name: StringConstructor; template: {}; visible: BooleanConstructor; visibleIndex: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:alignItemLabels": null; "update:caption": null; "update:captionTemplate": null; "update:colCount": null; "update:colCountByScreen": null; "update:colSpan": null; "update:cssClass": null; "update:items": null; "update:itemType": null; "update:name": null; "update:template": null; "update:visible": null; "update:visibleIndex": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly>; colSpan: NumberConstructor; cssClass: StringConstructor; items: PropType<(dxFormSimpleItem | dxFormGroupItem | dxFormTabbedItem | dxFormEmptyItem | dxFormButtonItem)[]>; itemType: PropType; name: StringConstructor; template: {}; visible: BooleanConstructor; visibleIndex: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:name"?: ((...args: any[]) => any) | undefined; "onUpdate:template"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:items"?: ((...args: any[]) => any) | undefined; "onUpdate:cssClass"?: ((...args: any[]) => any) | undefined; "onUpdate:colSpan"?: ((...args: any[]) => any) | undefined; "onUpdate:itemType"?: ((...args: any[]) => any) | undefined; "onUpdate:visibleIndex"?: ((...args: any[]) => any) | undefined; "onUpdate:caption"?: ((...args: any[]) => any) | undefined; "onUpdate:alignItemLabels"?: ((...args: any[]) => any) | undefined; "onUpdate:colCount"?: ((...args: any[]) => any) | undefined; "onUpdate:colCountByScreen"?: ((...args: any[]) => any) | undefined; "onUpdate:captionTemplate"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; alignItemLabels: boolean; }>; declare const DxItem: import("vue").DefineComponent<{ aiOptions: PropType>; alignItemLabels: BooleanConstructor; badge: StringConstructor; buttonOptions: PropType | dxButtonOptions>; caption: StringConstructor; captionTemplate: {}; colCount: NumberConstructor; colCountByScreen: PropType>; colSpan: NumberConstructor; cssClass: StringConstructor; dataField: StringConstructor; disabled: BooleanConstructor; editorOptions: {}; editorType: PropType; elementAttr: PropType>; helpText: StringConstructor; hint: StringConstructor; horizontalAlignment: PropType; html: StringConstructor; icon: StringConstructor; isRequired: BooleanConstructor; items: PropType<(dxFormSimpleItem | dxFormGroupItem | dxFormTabbedItem | dxFormEmptyItem | dxFormButtonItem)[]>; itemType: PropType; label: PropType>; locateInMenu: PropType; location: PropType; menuItemTemplate: {}; name: PropType; options: PropType | dxButtonGroupOptions | DateNavigatorItemProperties>; showText: PropType; tabPanelOptions: PropType | dxTabPanelOptions>; tabs: PropType[]>; tabTemplate: {}; template: {}; text: StringConstructor; title: StringConstructor; type: PropType; validationRules: PropType; verticalAlignment: PropType; visible: BooleanConstructor; visibleIndex: NumberConstructor; widget: PropType; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:aiOptions": null; "update:alignItemLabels": null; "update:badge": null; "update:buttonOptions": null; "update:caption": null; "update:captionTemplate": null; "update:colCount": null; "update:colCountByScreen": null; "update:colSpan": null; "update:cssClass": null; "update:dataField": null; "update:disabled": null; "update:editorOptions": null; "update:editorType": null; "update:elementAttr": null; "update:helpText": null; "update:hint": null; "update:horizontalAlignment": null; "update:html": null; "update:icon": null; "update:isRequired": null; "update:items": null; "update:itemType": null; "update:label": null; "update:locateInMenu": null; "update:location": null; "update:menuItemTemplate": null; "update:name": null; "update:options": null; "update:showText": null; "update:tabPanelOptions": null; "update:tabs": null; "update:tabTemplate": null; "update:template": null; "update:text": null; "update:title": null; "update:type": null; "update:validationRules": null; "update:verticalAlignment": null; "update:visible": null; "update:visibleIndex": null; "update:widget": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly>; alignItemLabels: BooleanConstructor; badge: StringConstructor; buttonOptions: PropType | dxButtonOptions>; caption: StringConstructor; captionTemplate: {}; colCount: NumberConstructor; colCountByScreen: PropType>; colSpan: NumberConstructor; cssClass: StringConstructor; dataField: StringConstructor; disabled: BooleanConstructor; editorOptions: {}; editorType: PropType; elementAttr: PropType>; helpText: StringConstructor; hint: StringConstructor; horizontalAlignment: PropType; html: StringConstructor; icon: StringConstructor; isRequired: BooleanConstructor; items: PropType<(dxFormSimpleItem | dxFormGroupItem | dxFormTabbedItem | dxFormEmptyItem | dxFormButtonItem)[]>; itemType: PropType; label: PropType>; locateInMenu: PropType; location: PropType; menuItemTemplate: {}; name: PropType; options: PropType | dxButtonGroupOptions | DateNavigatorItemProperties>; showText: PropType; tabPanelOptions: PropType | dxTabPanelOptions>; tabs: PropType[]>; tabTemplate: {}; template: {}; text: StringConstructor; title: StringConstructor; type: PropType; validationRules: PropType; verticalAlignment: PropType; visible: BooleanConstructor; visibleIndex: NumberConstructor; widget: 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:title"?: ((...args: any[]) => any) | undefined; "onUpdate:name"?: ((...args: any[]) => any) | undefined; "onUpdate:template"?: ((...args: any[]) => any) | undefined; "onUpdate:text"?: ((...args: any[]) => any) | undefined; "onUpdate:type"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:horizontalAlignment"?: ((...args: any[]) => any) | undefined; "onUpdate:verticalAlignment"?: ((...args: any[]) => any) | undefined; "onUpdate:dataField"?: ((...args: any[]) => any) | undefined; "onUpdate:label"?: ((...args: any[]) => any) | undefined; "onUpdate:validationRules"?: ((...args: any[]) => any) | undefined; "onUpdate:items"?: ((...args: any[]) => any) | undefined; "onUpdate:html"?: ((...args: any[]) => any) | undefined; "onUpdate:hint"?: ((...args: any[]) => any) | undefined; "onUpdate:location"?: ((...args: any[]) => any) | undefined; "onUpdate:options"?: ((...args: any[]) => any) | undefined; "onUpdate:icon"?: ((...args: any[]) => any) | undefined; "onUpdate:editorOptions"?: ((...args: any[]) => any) | undefined; "onUpdate:cssClass"?: ((...args: any[]) => any) | undefined; "onUpdate:buttonOptions"?: ((...args: any[]) => any) | undefined; "onUpdate:colSpan"?: ((...args: any[]) => any) | undefined; "onUpdate:itemType"?: ((...args: any[]) => any) | undefined; "onUpdate:visibleIndex"?: ((...args: any[]) => any) | undefined; "onUpdate:caption"?: ((...args: any[]) => any) | undefined; "onUpdate:alignItemLabels"?: ((...args: any[]) => any) | undefined; "onUpdate:colCount"?: ((...args: any[]) => any) | undefined; "onUpdate:colCountByScreen"?: ((...args: any[]) => any) | undefined; "onUpdate:aiOptions"?: ((...args: any[]) => any) | undefined; "onUpdate:editorType"?: ((...args: any[]) => any) | undefined; "onUpdate:helpText"?: ((...args: any[]) => any) | undefined; "onUpdate:isRequired"?: ((...args: any[]) => any) | undefined; "onUpdate:captionTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:badge"?: ((...args: any[]) => any) | undefined; "onUpdate:locateInMenu"?: ((...args: any[]) => any) | undefined; "onUpdate:menuItemTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:showText"?: ((...args: any[]) => any) | undefined; "onUpdate:tabPanelOptions"?: ((...args: any[]) => any) | undefined; "onUpdate:tabs"?: ((...args: any[]) => any) | undefined; "onUpdate:tabTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:widget"?: ((...args: any[]) => any) | undefined; }, { disabled: boolean; visible: boolean; alignItemLabels: boolean; isRequired: boolean; }>; declare const DxLabel: import("vue").DefineComponent<{ alignment: PropType; location: PropType; showColon: BooleanConstructor; template: {}; text: StringConstructor; visible: BooleanConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:alignment": null; "update:location": null; "update:showColon": null; "update:template": null; "update:text": null; "update:visible": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; location: PropType; showColon: BooleanConstructor; template: {}; text: StringConstructor; visible: BooleanConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:template"?: ((...args: any[]) => any) | undefined; "onUpdate:text"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:location"?: ((...args: any[]) => any) | undefined; "onUpdate:alignment"?: ((...args: any[]) => any) | undefined; "onUpdate:showColon"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; showColon: boolean; }>; declare const DxNumericRule: import("vue").DefineComponent<{ ignoreEmptyValue: BooleanConstructor; message: StringConstructor; type: PropType; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:ignoreEmptyValue": null; "update:message": null; "update:type": 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:type"?: ((...args: any[]) => any) | undefined; "onUpdate:ignoreEmptyValue"?: ((...args: any[]) => any) | undefined; "onUpdate:message"?: ((...args: any[]) => any) | undefined; }, { ignoreEmptyValue: boolean; }>; declare const DxOptions: import("vue").DefineComponent<{ accessKey: StringConstructor; activeStateEnabled: BooleanConstructor; buttonTemplate: {}; disabled: BooleanConstructor; elementAttr: PropType>; focusStateEnabled: BooleanConstructor; height: (NumberConstructor | StringConstructor)[]; hint: StringConstructor; hoverStateEnabled: BooleanConstructor; items: PropType<(dxButtonGroupItem | SchedulerPredefinedDateNavigatorItem)[]>; keyExpr: PropType void)>; onContentReady: PropType<(e: ButtonGroupContentReadyEvent) => void>; onDisposing: PropType<(e: ButtonGroupDisposingEvent) => void>; onInitialized: PropType<(e: ButtonGroupInitializedEvent) => void>; onItemClick: PropType<(e: ItemClickEvent) => void>; onOptionChanged: PropType<(e: ButtonGroupOptionChangedEvent) => void>; onSelectionChanged: PropType<(e: SelectionChangedEvent) => void>; rtlEnabled: BooleanConstructor; selectedItemKeys: PropType; selectedItems: PropType; selectionMode: PropType; stylingMode: PropType; tabIndex: NumberConstructor; 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:buttonTemplate": null; "update:disabled": null; "update:elementAttr": null; "update:focusStateEnabled": null; "update:height": null; "update:hint": null; "update:hoverStateEnabled": null; "update:items": null; "update:keyExpr": null; "update:onContentReady": null; "update:onDisposing": null; "update:onInitialized": null; "update:onItemClick": null; "update:onOptionChanged": null; "update:onSelectionChanged": null; "update:rtlEnabled": null; "update:selectedItemKeys": null; "update:selectedItems": null; "update:selectionMode": null; "update:stylingMode": null; "update:tabIndex": 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; items: PropType<(dxButtonGroupItem | SchedulerPredefinedDateNavigatorItem)[]>; keyExpr: PropType void)>; onContentReady: PropType<(e: ButtonGroupContentReadyEvent) => void>; onDisposing: PropType<(e: ButtonGroupDisposingEvent) => void>; onInitialized: PropType<(e: ButtonGroupInitializedEvent) => void>; onItemClick: PropType<(e: ItemClickEvent) => void>; onOptionChanged: PropType<(e: ButtonGroupOptionChangedEvent) => void>; onSelectionChanged: PropType<(e: SelectionChangedEvent) => void>; rtlEnabled: BooleanConstructor; selectedItemKeys: PropType; selectedItems: PropType; selectionMode: PropType; stylingMode: PropType; tabIndex: NumberConstructor; 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:onSelectionChanged"?: ((...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:selectionMode"?: ((...args: any[]) => any) | undefined; "onUpdate:hoverStateEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:items"?: ((...args: any[]) => any) | undefined; "onUpdate:onContentReady"?: ((...args: any[]) => any) | undefined; "onUpdate:onItemClick"?: ((...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:keyExpr"?: ((...args: any[]) => any) | undefined; "onUpdate:tabIndex"?: ((...args: any[]) => any) | undefined; "onUpdate:stylingMode"?: ((...args: any[]) => any) | undefined; "onUpdate:selectedItems"?: ((...args: any[]) => any) | undefined; "onUpdate:selectedItemKeys"?: ((...args: any[]) => any) | undefined; "onUpdate:buttonTemplate"?: ((...args: any[]) => any) | undefined; }, { disabled: boolean; rtlEnabled: boolean; visible: boolean; hoverStateEnabled: boolean; activeStateEnabled: boolean; focusStateEnabled: boolean; }>; declare const DxOptionsItem: import("vue").DefineComponent<{ disabled: BooleanConstructor; elementAttr: PropType>; hint: StringConstructor; icon: StringConstructor; template: {}; text: StringConstructor; type: PropType; visible: BooleanConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:disabled": null; "update:elementAttr": null; "update:hint": null; "update:icon": null; "update:template": null; "update:text": null; "update:type": null; "update:visible": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly>; hint: StringConstructor; icon: StringConstructor; template: {}; text: StringConstructor; type: PropType; visible: BooleanConstructor; }>> & { "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:template"?: ((...args: any[]) => any) | undefined; "onUpdate:text"?: ((...args: any[]) => any) | undefined; "onUpdate:type"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:hint"?: ((...args: any[]) => any) | undefined; "onUpdate:icon"?: ((...args: any[]) => any) | undefined; }, { disabled: boolean; visible: boolean; }>; declare const DxPatternRule: import("vue").DefineComponent<{ ignoreEmptyValue: BooleanConstructor; message: StringConstructor; pattern: (StringConstructor | RegExpConstructor)[]; type: PropType; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:ignoreEmptyValue": null; "update:message": null; "update:pattern": null; "update:type": 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:type"?: ((...args: any[]) => any) | undefined; "onUpdate:ignoreEmptyValue"?: ((...args: any[]) => any) | undefined; "onUpdate:message"?: ((...args: any[]) => any) | undefined; "onUpdate:pattern"?: ((...args: any[]) => any) | undefined; }, { ignoreEmptyValue: boolean; }>; declare const DxRangeRule: import("vue").DefineComponent<{ ignoreEmptyValue: BooleanConstructor; max: (DateConstructor | NumberConstructor | StringConstructor)[]; message: StringConstructor; min: (DateConstructor | NumberConstructor | StringConstructor)[]; reevaluate: BooleanConstructor; type: PropType; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:ignoreEmptyValue": null; "update:max": null; "update:message": null; "update:min": null; "update:reevaluate": null; "update:type": 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:type"?: ((...args: any[]) => any) | undefined; "onUpdate:ignoreEmptyValue"?: ((...args: any[]) => any) | undefined; "onUpdate:message"?: ((...args: any[]) => any) | undefined; "onUpdate:reevaluate"?: ((...args: any[]) => any) | undefined; "onUpdate:max"?: ((...args: any[]) => any) | undefined; "onUpdate:min"?: ((...args: any[]) => any) | undefined; }, { ignoreEmptyValue: boolean; reevaluate: boolean; }>; declare const DxRequiredRule: import("vue").DefineComponent<{ message: StringConstructor; trim: BooleanConstructor; type: PropType; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:message": null; "update:trim": null; "update:type": 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:type"?: ((...args: any[]) => any) | undefined; "onUpdate:message"?: ((...args: any[]) => any) | undefined; "onUpdate:trim"?: ((...args: any[]) => any) | undefined; }, { trim: boolean; }>; declare const DxResource: import("vue").DefineComponent<{ allowMultiple: BooleanConstructor; colorExpr: StringConstructor; dataSource: PropType | DataSource | DataSourceOptions | Store | null>; displayExpr: PropType string)>; fieldExpr: StringConstructor; icon: StringConstructor; label: StringConstructor; useColorAsDefault: BooleanConstructor; valueExpr: PropType void)>; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:allowMultiple": null; "update:colorExpr": null; "update:dataSource": null; "update:displayExpr": null; "update:fieldExpr": null; "update:icon": null; "update:label": null; "update:useColorAsDefault": null; "update:valueExpr": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly | DataSource | DataSourceOptions | Store | null>; displayExpr: PropType string)>; fieldExpr: StringConstructor; icon: StringConstructor; label: StringConstructor; useColorAsDefault: BooleanConstructor; valueExpr: PropType void)>; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:dataSource"?: ((...args: any[]) => any) | undefined; "onUpdate:label"?: ((...args: any[]) => any) | undefined; "onUpdate:displayExpr"?: ((...args: any[]) => any) | undefined; "onUpdate:icon"?: ((...args: any[]) => any) | undefined; "onUpdate:valueExpr"?: ((...args: any[]) => any) | undefined; "onUpdate:allowMultiple"?: ((...args: any[]) => any) | undefined; "onUpdate:colorExpr"?: ((...args: any[]) => any) | undefined; "onUpdate:fieldExpr"?: ((...args: any[]) => any) | undefined; "onUpdate:useColorAsDefault"?: ((...args: any[]) => any) | undefined; }, { allowMultiple: boolean; useColorAsDefault: boolean; }>; declare const DxScrolling: import("vue").DefineComponent<{ mode: PropType; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:mode": 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:mode"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxSimpleItem: import("vue").DefineComponent<{ aiOptions: PropType>; colSpan: NumberConstructor; cssClass: StringConstructor; dataField: StringConstructor; editorOptions: {}; editorType: PropType; helpText: StringConstructor; isRequired: BooleanConstructor; itemType: PropType; label: PropType>; name: StringConstructor; template: {}; validationRules: PropType; visible: BooleanConstructor; visibleIndex: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:aiOptions": null; "update:colSpan": null; "update:cssClass": null; "update:dataField": null; "update:editorOptions": null; "update:editorType": null; "update:helpText": null; "update:isRequired": null; "update:itemType": null; "update:label": null; "update:name": null; "update:template": null; "update:validationRules": null; "update:visible": null; "update:visibleIndex": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly>; colSpan: NumberConstructor; cssClass: StringConstructor; dataField: StringConstructor; editorOptions: {}; editorType: PropType; helpText: StringConstructor; isRequired: BooleanConstructor; itemType: PropType; label: PropType>; name: StringConstructor; template: {}; validationRules: PropType; visible: BooleanConstructor; visibleIndex: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:name"?: ((...args: any[]) => any) | undefined; "onUpdate:template"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:dataField"?: ((...args: any[]) => any) | undefined; "onUpdate:label"?: ((...args: any[]) => any) | undefined; "onUpdate:validationRules"?: ((...args: any[]) => any) | undefined; "onUpdate:editorOptions"?: ((...args: any[]) => any) | undefined; "onUpdate:cssClass"?: ((...args: any[]) => any) | undefined; "onUpdate:colSpan"?: ((...args: any[]) => any) | undefined; "onUpdate:itemType"?: ((...args: any[]) => any) | undefined; "onUpdate:visibleIndex"?: ((...args: any[]) => any) | undefined; "onUpdate:aiOptions"?: ((...args: any[]) => any) | undefined; "onUpdate:editorType"?: ((...args: any[]) => any) | undefined; "onUpdate:helpText"?: ((...args: any[]) => any) | undefined; "onUpdate:isRequired"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; isRequired: boolean; }>; declare const DxStringLengthRule: import("vue").DefineComponent<{ ignoreEmptyValue: BooleanConstructor; max: NumberConstructor; message: StringConstructor; min: NumberConstructor; trim: BooleanConstructor; type: PropType; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:ignoreEmptyValue": null; "update:max": null; "update:message": null; "update:min": null; "update:trim": null; "update:type": 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:type"?: ((...args: any[]) => any) | undefined; "onUpdate:ignoreEmptyValue"?: ((...args: any[]) => any) | undefined; "onUpdate:message"?: ((...args: any[]) => any) | undefined; "onUpdate:max"?: ((...args: any[]) => any) | undefined; "onUpdate:min"?: ((...args: any[]) => any) | undefined; "onUpdate:trim"?: ((...args: any[]) => any) | undefined; }, { trim: boolean; ignoreEmptyValue: boolean; }>; declare const DxTab: import("vue").DefineComponent<{ alignItemLabels: BooleanConstructor; badge: StringConstructor; colCount: NumberConstructor; colCountByScreen: PropType>; disabled: BooleanConstructor; icon: StringConstructor; items: PropType<(dxFormSimpleItem | dxFormGroupItem | dxFormTabbedItem | dxFormEmptyItem | dxFormButtonItem)[]>; tabTemplate: {}; template: {}; title: StringConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:alignItemLabels": null; "update:badge": null; "update:colCount": null; "update:colCountByScreen": null; "update:disabled": null; "update:icon": null; "update:items": null; "update:tabTemplate": null; "update:template": null; "update:title": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly>; disabled: BooleanConstructor; icon: StringConstructor; items: PropType<(dxFormSimpleItem | dxFormGroupItem | dxFormTabbedItem | dxFormEmptyItem | dxFormButtonItem)[]>; tabTemplate: {}; template: {}; title: StringConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:disabled"?: ((...args: any[]) => any) | undefined; "onUpdate:title"?: ((...args: any[]) => any) | undefined; "onUpdate:template"?: ((...args: any[]) => any) | undefined; "onUpdate:items"?: ((...args: any[]) => any) | undefined; "onUpdate:icon"?: ((...args: any[]) => any) | undefined; "onUpdate:alignItemLabels"?: ((...args: any[]) => any) | undefined; "onUpdate:colCount"?: ((...args: any[]) => any) | undefined; "onUpdate:colCountByScreen"?: ((...args: any[]) => any) | undefined; "onUpdate:badge"?: ((...args: any[]) => any) | undefined; "onUpdate:tabTemplate"?: ((...args: any[]) => any) | undefined; }, { disabled: boolean; alignItemLabels: boolean; }>; declare const DxTabbedItem: import("vue").DefineComponent<{ colSpan: NumberConstructor; cssClass: StringConstructor; itemType: PropType; name: StringConstructor; tabPanelOptions: PropType | dxTabPanelOptions>; tabs: PropType[]>; visible: BooleanConstructor; visibleIndex: NumberConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:colSpan": null; "update:cssClass": null; "update:itemType": null; "update:name": null; "update:tabPanelOptions": null; "update:tabs": null; "update:visible": null; "update:visibleIndex": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; name: StringConstructor; tabPanelOptions: PropType | dxTabPanelOptions>; tabs: PropType[]>; visible: BooleanConstructor; visibleIndex: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:name"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:cssClass"?: ((...args: any[]) => any) | undefined; "onUpdate:colSpan"?: ((...args: any[]) => any) | undefined; "onUpdate:itemType"?: ((...args: any[]) => any) | undefined; "onUpdate:visibleIndex"?: ((...args: any[]) => any) | undefined; "onUpdate:tabPanelOptions"?: ((...args: any[]) => any) | undefined; "onUpdate:tabs"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; }>; declare const DxTabPanelOptions: import("vue").DefineComponent<{ accessKey: StringConstructor; activeStateEnabled: BooleanConstructor; animationEnabled: BooleanConstructor; dataSource: PropType | DataSource | DataSourceOptions | Store | null>; deferRendering: BooleanConstructor; disabled: BooleanConstructor; elementAttr: PropType>; focusStateEnabled: BooleanConstructor; height: (NumberConstructor | StringConstructor)[]; hint: StringConstructor; hoverStateEnabled: BooleanConstructor; iconPosition: PropType; itemHoldTimeout: NumberConstructor; items: PropType; itemTemplate: {}; itemTitleTemplate: {}; keyExpr: PropType void)>; loop: BooleanConstructor; noDataText: StringConstructor; onContentReady: PropType<(e: TabPanelContentReadyEvent) => void>; onDisposing: PropType<(e: TabPanelDisposingEvent) => void>; onInitialized: PropType<(e: TabPanelInitializedEvent) => void>; onItemClick: PropType<(e: TabPanelItemClickEvent) => void>; onItemContextMenu: PropType<(e: ItemContextMenuEvent) => void>; onItemHold: PropType<(e: ItemHoldEvent) => void>; onItemRendered: PropType<(e: ItemRenderedEvent) => void>; onOptionChanged: PropType<(e: TabPanelOptionChangedEvent) => void>; onSelectionChanged: PropType<(e: TabPanelSelectionChangedEvent) => void>; onSelectionChanging: PropType<(e: SelectionChangingEvent) => void>; onTitleClick: PropType<(e: TitleClickEvent) => void>; onTitleHold: PropType<(e: TitleHoldEvent) => void>; onTitleRendered: PropType<(e: TitleRenderedEvent) => void>; repaintChangesOnly: BooleanConstructor; rtlEnabled: BooleanConstructor; scrollByContent: BooleanConstructor; scrollingEnabled: BooleanConstructor; selectedIndex: NumberConstructor; selectedItem: {}; showNavButtons: BooleanConstructor; stylingMode: PropType; swipeEnabled: BooleanConstructor; tabIndex: NumberConstructor; tabsPosition: PropType; 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:animationEnabled": null; "update:dataSource": null; "update:deferRendering": null; "update:disabled": null; "update:elementAttr": null; "update:focusStateEnabled": null; "update:height": null; "update:hint": null; "update:hoverStateEnabled": null; "update:iconPosition": null; "update:itemHoldTimeout": null; "update:items": null; "update:itemTemplate": null; "update:itemTitleTemplate": null; "update:keyExpr": null; "update:loop": null; "update:noDataText": null; "update:onContentReady": null; "update:onDisposing": null; "update:onInitialized": null; "update:onItemClick": null; "update:onItemContextMenu": null; "update:onItemHold": null; "update:onItemRendered": null; "update:onOptionChanged": null; "update:onSelectionChanged": null; "update:onSelectionChanging": null; "update:onTitleClick": null; "update:onTitleHold": null; "update:onTitleRendered": null; "update:repaintChangesOnly": null; "update:rtlEnabled": null; "update:scrollByContent": null; "update:scrollingEnabled": null; "update:selectedIndex": null; "update:selectedItem": null; "update:showNavButtons": null; "update:stylingMode": null; "update:swipeEnabled": null; "update:tabIndex": null; "update:tabsPosition": null; "update:visible": null; "update:width": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly | DataSource | DataSourceOptions | Store | null>; deferRendering: BooleanConstructor; disabled: BooleanConstructor; elementAttr: PropType>; focusStateEnabled: BooleanConstructor; height: (NumberConstructor | StringConstructor)[]; hint: StringConstructor; hoverStateEnabled: BooleanConstructor; iconPosition: PropType; itemHoldTimeout: NumberConstructor; items: PropType; itemTemplate: {}; itemTitleTemplate: {}; keyExpr: PropType void)>; loop: BooleanConstructor; noDataText: StringConstructor; onContentReady: PropType<(e: TabPanelContentReadyEvent) => void>; onDisposing: PropType<(e: TabPanelDisposingEvent) => void>; onInitialized: PropType<(e: TabPanelInitializedEvent) => void>; onItemClick: PropType<(e: TabPanelItemClickEvent) => void>; onItemContextMenu: PropType<(e: ItemContextMenuEvent) => void>; onItemHold: PropType<(e: ItemHoldEvent) => void>; onItemRendered: PropType<(e: ItemRenderedEvent) => void>; onOptionChanged: PropType<(e: TabPanelOptionChangedEvent) => void>; onSelectionChanged: PropType<(e: TabPanelSelectionChangedEvent) => void>; onSelectionChanging: PropType<(e: SelectionChangingEvent) => void>; onTitleClick: PropType<(e: TitleClickEvent) => void>; onTitleHold: PropType<(e: TitleHoldEvent) => void>; onTitleRendered: PropType<(e: TitleRenderedEvent) => void>; repaintChangesOnly: BooleanConstructor; rtlEnabled: BooleanConstructor; scrollByContent: BooleanConstructor; scrollingEnabled: BooleanConstructor; selectedIndex: NumberConstructor; selectedItem: {}; showNavButtons: BooleanConstructor; stylingMode: PropType; swipeEnabled: BooleanConstructor; tabIndex: NumberConstructor; tabsPosition: PropType; 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:onSelectionChanged"?: ((...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:dataSource"?: ((...args: any[]) => any) | undefined; "onUpdate:hoverStateEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:items"?: ((...args: any[]) => any) | undefined; "onUpdate:itemTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:onContentReady"?: ((...args: any[]) => any) | undefined; "onUpdate:onItemClick"?: ((...args: any[]) => any) | undefined; "onUpdate:accessKey"?: ((...args: any[]) => any) | undefined; "onUpdate:activeStateEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:animationEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:focusStateEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:hint"?: ((...args: any[]) => any) | undefined; "onUpdate:itemHoldTimeout"?: ((...args: any[]) => any) | undefined; "onUpdate:keyExpr"?: ((...args: any[]) => any) | undefined; "onUpdate:noDataText"?: ((...args: any[]) => any) | undefined; "onUpdate:onItemContextMenu"?: ((...args: any[]) => any) | undefined; "onUpdate:onItemHold"?: ((...args: any[]) => any) | undefined; "onUpdate:onItemRendered"?: ((...args: any[]) => any) | undefined; "onUpdate:tabIndex"?: ((...args: any[]) => any) | undefined; "onUpdate:stylingMode"?: ((...args: any[]) => any) | undefined; "onUpdate:repaintChangesOnly"?: ((...args: any[]) => any) | undefined; "onUpdate:deferRendering"?: ((...args: any[]) => any) | undefined; "onUpdate:onTitleRendered"?: ((...args: any[]) => any) | undefined; "onUpdate:scrollingEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:scrollByContent"?: ((...args: any[]) => any) | undefined; "onUpdate:iconPosition"?: ((...args: any[]) => any) | undefined; "onUpdate:itemTitleTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:loop"?: ((...args: any[]) => any) | undefined; "onUpdate:onSelectionChanging"?: ((...args: any[]) => any) | undefined; "onUpdate:onTitleClick"?: ((...args: any[]) => any) | undefined; "onUpdate:onTitleHold"?: ((...args: any[]) => any) | undefined; "onUpdate:selectedIndex"?: ((...args: any[]) => any) | undefined; "onUpdate:selectedItem"?: ((...args: any[]) => any) | undefined; "onUpdate:showNavButtons"?: ((...args: any[]) => any) | undefined; "onUpdate:swipeEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:tabsPosition"?: ((...args: any[]) => any) | undefined; }, { disabled: boolean; rtlEnabled: boolean; visible: boolean; hoverStateEnabled: boolean; activeStateEnabled: boolean; focusStateEnabled: boolean; animationEnabled: boolean; repaintChangesOnly: boolean; deferRendering: boolean; scrollingEnabled: boolean; scrollByContent: boolean; loop: boolean; showNavButtons: boolean; swipeEnabled: boolean; }>; declare const DxTabPanelOptionsItem: import("vue").DefineComponent<{ badge: StringConstructor; disabled: BooleanConstructor; html: StringConstructor; icon: StringConstructor; tabTemplate: {}; template: {}; text: StringConstructor; title: StringConstructor; visible: BooleanConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:badge": null; "update:disabled": null; "update:html": null; "update:icon": null; "update:tabTemplate": null; "update:template": null; "update:text": null; "update:title": null; "update:visible": 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:disabled"?: ((...args: any[]) => any) | undefined; "onUpdate:title"?: ((...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:icon"?: ((...args: any[]) => any) | undefined; "onUpdate:badge"?: ((...args: any[]) => any) | undefined; "onUpdate:tabTemplate"?: ((...args: any[]) => any) | undefined; }, { disabled: boolean; visible: boolean; }>; declare const DxToolbar: import("vue").DefineComponent<{ disabled: BooleanConstructor; items: PropType<(SchedulerPredefinedToolbarItem | DxSchedulerTypes.ToolbarItem)[]>; multiline: BooleanConstructor; visible: BooleanConstructor; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:disabled": null; "update:items": null; "update:multiline": null; "update:visible": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; multiline: BooleanConstructor; visible: BooleanConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:disabled"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:items"?: ((...args: any[]) => any) | undefined; "onUpdate:multiline"?: ((...args: any[]) => any) | undefined; }, { disabled: boolean; visible: boolean; multiline: boolean; }>; declare const DxToolbarItem: import("vue").DefineComponent<{ cssClass: StringConstructor; disabled: BooleanConstructor; html: StringConstructor; locateInMenu: PropType; location: PropType; menuItemTemplate: {}; name: PropType; options: PropType | dxButtonGroupOptions | DateNavigatorItemProperties>; showText: PropType; template: {}; text: StringConstructor; 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:name": null; "update:options": null; "update:showText": null; "update:template": null; "update:text": null; "update:visible": null; "update:widget": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; location: PropType; menuItemTemplate: {}; name: PropType; options: PropType | dxButtonGroupOptions | DateNavigatorItemProperties>; showText: PropType; template: {}; text: StringConstructor; visible: BooleanConstructor; widget: PropType; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:disabled"?: ((...args: any[]) => any) | undefined; "onUpdate:name"?: ((...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: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; }>; declare const DxValidationRule: import("vue").DefineComponent<{ comparisonTarget: PropType<() => any>; comparisonType: PropType; ignoreEmptyValue: BooleanConstructor; max: (DateConstructor | NumberConstructor | StringConstructor)[]; message: StringConstructor; min: (DateConstructor | NumberConstructor | StringConstructor)[]; pattern: (StringConstructor | RegExpConstructor)[]; reevaluate: BooleanConstructor; trim: BooleanConstructor; type: PropType; validationCallback: PropType<(options: { column: Record; data: Record; formItem: Record; rule: Record; validator: Record; value: any; }) => boolean>; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:comparisonTarget": null; "update:comparisonType": null; "update:ignoreEmptyValue": null; "update:max": null; "update:message": null; "update:min": null; "update:pattern": null; "update:reevaluate": null; "update:trim": null; "update:type": null; "update:validationCallback": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly any>; comparisonType: PropType; ignoreEmptyValue: BooleanConstructor; max: (DateConstructor | NumberConstructor | StringConstructor)[]; message: StringConstructor; min: (DateConstructor | NumberConstructor | StringConstructor)[]; pattern: (StringConstructor | RegExpConstructor)[]; reevaluate: BooleanConstructor; trim: BooleanConstructor; type: PropType; validationCallback: PropType<(options: { column: Record; data: Record; formItem: Record; rule: Record; validator: Record; value: any; }) => boolean>; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:type"?: ((...args: any[]) => any) | undefined; "onUpdate:ignoreEmptyValue"?: ((...args: any[]) => any) | undefined; "onUpdate:message"?: ((...args: any[]) => any) | undefined; "onUpdate:reevaluate"?: ((...args: any[]) => any) | undefined; "onUpdate:validationCallback"?: ((...args: any[]) => any) | undefined; "onUpdate:comparisonTarget"?: ((...args: any[]) => any) | undefined; "onUpdate:comparisonType"?: ((...args: any[]) => any) | undefined; "onUpdate:pattern"?: ((...args: any[]) => any) | undefined; "onUpdate:max"?: ((...args: any[]) => any) | undefined; "onUpdate:min"?: ((...args: any[]) => any) | undefined; "onUpdate:trim"?: ((...args: any[]) => any) | undefined; }, { trim: boolean; ignoreEmptyValue: boolean; reevaluate: boolean; }>; declare const DxView: import("vue").DefineComponent<{ agendaDuration: NumberConstructor; allDayPanelMode: PropType; appointmentCollectorTemplate: {}; appointmentTemplate: {}; appointmentTooltipTemplate: {}; cellDuration: NumberConstructor; dataCellTemplate: {}; dateCellTemplate: {}; endDayHour: NumberConstructor; firstDayOfWeek: PropType; groupByDate: BooleanConstructor; groupOrientation: PropType; groups: PropType; intervalCount: NumberConstructor; maxAppointmentsPerCell: PropType; name: StringConstructor; offset: NumberConstructor; resourceCellTemplate: {}; scrolling: PropType; startDate: (DateConstructor | NumberConstructor | StringConstructor)[]; startDayHour: NumberConstructor; timeCellTemplate: {}; type: PropType; }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:agendaDuration": null; "update:allDayPanelMode": null; "update:appointmentCollectorTemplate": null; "update:appointmentTemplate": null; "update:appointmentTooltipTemplate": null; "update:cellDuration": null; "update:dataCellTemplate": null; "update:dateCellTemplate": null; "update:endDayHour": null; "update:firstDayOfWeek": null; "update:groupByDate": null; "update:groupOrientation": null; "update:groups": null; "update:intervalCount": null; "update:maxAppointmentsPerCell": null; "update:name": null; "update:offset": null; "update:resourceCellTemplate": null; "update:scrolling": null; "update:startDate": null; "update:startDayHour": null; "update:timeCellTemplate": null; "update:type": null; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; appointmentCollectorTemplate: {}; appointmentTemplate: {}; appointmentTooltipTemplate: {}; cellDuration: NumberConstructor; dataCellTemplate: {}; dateCellTemplate: {}; endDayHour: NumberConstructor; firstDayOfWeek: PropType; groupByDate: BooleanConstructor; groupOrientation: PropType; groups: PropType; intervalCount: NumberConstructor; maxAppointmentsPerCell: PropType; name: StringConstructor; offset: NumberConstructor; resourceCellTemplate: {}; scrolling: PropType; startDate: (DateConstructor | NumberConstructor | StringConstructor)[]; startDayHour: NumberConstructor; timeCellTemplate: {}; type: PropType; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:name"?: ((...args: any[]) => any) | undefined; "onUpdate:type"?: ((...args: any[]) => any) | undefined; "onUpdate:offset"?: ((...args: any[]) => any) | undefined; "onUpdate:scrolling"?: ((...args: any[]) => any) | undefined; "onUpdate:allDayPanelMode"?: ((...args: any[]) => any) | undefined; "onUpdate:appointmentCollectorTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:appointmentTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:appointmentTooltipTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:cellDuration"?: ((...args: any[]) => any) | undefined; "onUpdate:dataCellTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:dateCellTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:endDayHour"?: ((...args: any[]) => any) | undefined; "onUpdate:firstDayOfWeek"?: ((...args: any[]) => any) | undefined; "onUpdate:groupByDate"?: ((...args: any[]) => any) | undefined; "onUpdate:groups"?: ((...args: any[]) => any) | undefined; "onUpdate:maxAppointmentsPerCell"?: ((...args: any[]) => any) | undefined; "onUpdate:resourceCellTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:startDayHour"?: ((...args: any[]) => any) | undefined; "onUpdate:timeCellTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:agendaDuration"?: ((...args: any[]) => any) | undefined; "onUpdate:groupOrientation"?: ((...args: any[]) => any) | undefined; "onUpdate:intervalCount"?: ((...args: any[]) => any) | undefined; "onUpdate:startDate"?: ((...args: any[]) => any) | undefined; }, { groupByDate: boolean; }>; export default DxScheduler; export { DxScheduler, DxAIOptions, DxAppointmentDragging, DxAsyncRule, DxButtonItem, DxButtonOptions, DxColCountByScreen, DxCompareRule, DxCustomRule, DxEditing, DxEmailRule, DxEmptyItem, DxForm, DxGroupItem, DxItem, DxLabel, DxNumericRule, DxOptions, DxOptionsItem, DxPatternRule, DxRangeRule, DxRequiredRule, DxResource, DxScrolling, DxSimpleItem, DxStringLengthRule, DxTab, DxTabbedItem, DxTabPanelOptions, DxTabPanelOptionsItem, DxToolbar, DxToolbarItem, DxValidationRule, DxView }; import type * as DxSchedulerTypes from "devextreme/ui/scheduler_types"; export { DxSchedulerTypes };