UNPKG

devextreme-vue

Version:

DevExtreme Vue UI and Visualization Components

995 lines (994 loc) • 59.5 kB
/*! * devextreme-vue * Version: 25.1.6 * Build date: Mon Oct 13 2025 * * Copyright (c) 2012 - 2025 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-vue */ import { PropType } from "vue"; import Funnel, { Properties } from "devextreme/viz/funnel"; import DataSource from "devextreme/data/data_source"; import { FunnelAlgorithm, DisposingEvent, DrawnEvent, ExportedEvent, ExportingEvent, FileSavingEvent, HoverChangedEvent, IncidentOccurredEvent, InitializedEvent, ItemClickEvent, LegendClickEvent, OptionChangedEvent, SelectionChangedEvent, dxFunnelItem, FunnelLegendItem } from "devextreme/viz/funnel"; import { DataSourceOptions } from "devextreme/common/data"; import { Store } from "devextreme/data/store"; import { Palette, PaletteExtensionMode, ShiftLabelOverlap, Theme, DashStyle, Font, TextOverflow, WordWrap, HatchDirection, LabelPosition } from "devextreme/common/charts"; import { SingleMultipleOrNone, ExportFormat, HorizontalAlignment, VerticalEdge, HorizontalEdge, Position, Orientation } from "devextreme/common"; type AccessibleOptions = Pick<Properties, "adaptiveLayout" | "algorithm" | "argumentField" | "colorField" | "dataSource" | "disabled" | "elementAttr" | "export" | "hoverEnabled" | "inverted" | "item" | "label" | "legend" | "loadingIndicator" | "margin" | "neckHeight" | "neckWidth" | "onDisposing" | "onDrawn" | "onExported" | "onExporting" | "onFileSaving" | "onHoverChanged" | "onIncidentOccurred" | "onInitialized" | "onItemClick" | "onLegendClick" | "onOptionChanged" | "onSelectionChanged" | "palette" | "paletteExtensionMode" | "pathModified" | "redrawOnResize" | "resolveLabelOverlapping" | "rtlEnabled" | "selectionMode" | "size" | "sortData" | "theme" | "title" | "tooltip" | "valueField">; interface DxFunnel extends AccessibleOptions { readonly instance?: Funnel; } declare const DxFunnel: import("@vue/runtime-core").DefineComponent<{ adaptiveLayout: PropType<Record<string, any>>; algorithm: PropType<FunnelAlgorithm>; argumentField: StringConstructor; colorField: StringConstructor; dataSource: PropType<string | any[] | Record<string, any> | DataSource<any, any> | DataSourceOptions<any, any, any, any> | Store<any, any> | null>; disabled: BooleanConstructor; elementAttr: PropType<Record<string, any>>; export: PropType<Record<string, any>>; hoverEnabled: BooleanConstructor; inverted: BooleanConstructor; item: PropType<Record<string, any>>; label: PropType<Record<string, any>>; legend: PropType<Record<string, any>>; loadingIndicator: PropType<Record<string, any>>; margin: PropType<Record<string, any>>; neckHeight: NumberConstructor; neckWidth: NumberConstructor; onDisposing: PropType<(e: DisposingEvent) => void>; onDrawn: PropType<(e: DrawnEvent) => void>; onExported: PropType<(e: ExportedEvent) => void>; onExporting: PropType<(e: ExportingEvent) => void>; onFileSaving: PropType<(e: FileSavingEvent) => void>; onHoverChanged: PropType<(e: HoverChangedEvent) => void>; onIncidentOccurred: PropType<(e: IncidentOccurredEvent) => void>; onInitialized: PropType<(e: InitializedEvent) => void>; onItemClick: PropType<(e: ItemClickEvent) => void>; onLegendClick: PropType<(e: LegendClickEvent) => void>; onOptionChanged: PropType<(e: OptionChangedEvent) => void>; onSelectionChanged: PropType<(e: SelectionChangedEvent) => void>; palette: PropType<string[] | Palette>; paletteExtensionMode: PropType<PaletteExtensionMode>; pathModified: BooleanConstructor; redrawOnResize: BooleanConstructor; resolveLabelOverlapping: PropType<ShiftLabelOverlap>; rtlEnabled: BooleanConstructor; selectionMode: PropType<SingleMultipleOrNone>; size: PropType<Record<string, any>>; sortData: BooleanConstructor; theme: PropType<Theme>; title: PropType<string | Record<string, any>>; tooltip: PropType<Record<string, any>>; valueField: StringConstructor; }, unknown, unknown, { instance(): Funnel; }, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:adaptiveLayout": null; "update:algorithm": null; "update:argumentField": null; "update:colorField": null; "update:dataSource": null; "update:disabled": null; "update:elementAttr": null; "update:export": null; "update:hoverEnabled": null; "update:inverted": null; "update:item": null; "update:label": null; "update:legend": null; "update:loadingIndicator": null; "update:margin": null; "update:neckHeight": null; "update:neckWidth": null; "update:onDisposing": null; "update:onDrawn": null; "update:onExported": null; "update:onExporting": null; "update:onFileSaving": null; "update:onHoverChanged": null; "update:onIncidentOccurred": null; "update:onInitialized": null; "update:onItemClick": null; "update:onLegendClick": null; "update:onOptionChanged": null; "update:onSelectionChanged": null; "update:palette": null; "update:paletteExtensionMode": null; "update:pathModified": null; "update:redrawOnResize": null; "update:resolveLabelOverlapping": null; "update:rtlEnabled": null; "update:selectionMode": null; "update:size": null; "update:sortData": null; "update:theme": null; "update:title": null; "update:tooltip": null; "update:valueField": null; }, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{ adaptiveLayout: PropType<Record<string, any>>; algorithm: PropType<FunnelAlgorithm>; argumentField: StringConstructor; colorField: StringConstructor; dataSource: PropType<string | any[] | Record<string, any> | DataSource<any, any> | DataSourceOptions<any, any, any, any> | Store<any, any> | null>; disabled: BooleanConstructor; elementAttr: PropType<Record<string, any>>; export: PropType<Record<string, any>>; hoverEnabled: BooleanConstructor; inverted: BooleanConstructor; item: PropType<Record<string, any>>; label: PropType<Record<string, any>>; legend: PropType<Record<string, any>>; loadingIndicator: PropType<Record<string, any>>; margin: PropType<Record<string, any>>; neckHeight: NumberConstructor; neckWidth: NumberConstructor; onDisposing: PropType<(e: DisposingEvent) => void>; onDrawn: PropType<(e: DrawnEvent) => void>; onExported: PropType<(e: ExportedEvent) => void>; onExporting: PropType<(e: ExportingEvent) => void>; onFileSaving: PropType<(e: FileSavingEvent) => void>; onHoverChanged: PropType<(e: HoverChangedEvent) => void>; onIncidentOccurred: PropType<(e: IncidentOccurredEvent) => void>; onInitialized: PropType<(e: InitializedEvent) => void>; onItemClick: PropType<(e: ItemClickEvent) => void>; onLegendClick: PropType<(e: LegendClickEvent) => void>; onOptionChanged: PropType<(e: OptionChangedEvent) => void>; onSelectionChanged: PropType<(e: SelectionChangedEvent) => void>; palette: PropType<string[] | Palette>; paletteExtensionMode: PropType<PaletteExtensionMode>; pathModified: BooleanConstructor; redrawOnResize: BooleanConstructor; resolveLabelOverlapping: PropType<ShiftLabelOverlap>; rtlEnabled: BooleanConstructor; selectionMode: PropType<SingleMultipleOrNone>; size: PropType<Record<string, any>>; sortData: BooleanConstructor; theme: PropType<Theme>; title: PropType<string | Record<string, any>>; tooltip: PropType<Record<string, any>>; valueField: StringConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:dataSource"?: ((...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:onItemClick"?: ((...args: any[]) => any) | undefined; "onUpdate:onOptionChanged"?: ((...args: any[]) => any) | undefined; "onUpdate:onSelectionChanged"?: ((...args: any[]) => any) | undefined; "onUpdate:rtlEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:title"?: ((...args: any[]) => any) | undefined; "onUpdate:label"?: ((...args: any[]) => any) | undefined; "onUpdate:export"?: ((...args: any[]) => any) | undefined; "onUpdate:legend"?: ((...args: any[]) => any) | undefined; "onUpdate:loadingIndicator"?: ((...args: any[]) => any) | undefined; "onUpdate:margin"?: ((...args: any[]) => any) | undefined; "onUpdate:onDrawn"?: ((...args: any[]) => any) | undefined; "onUpdate:onExported"?: ((...args: any[]) => any) | undefined; "onUpdate:onExporting"?: ((...args: any[]) => any) | undefined; "onUpdate:onFileSaving"?: ((...args: any[]) => any) | undefined; "onUpdate:onIncidentOccurred"?: ((...args: any[]) => any) | undefined; "onUpdate:palette"?: ((...args: any[]) => any) | undefined; "onUpdate:paletteExtensionMode"?: ((...args: any[]) => any) | undefined; "onUpdate:pathModified"?: ((...args: any[]) => any) | undefined; "onUpdate:redrawOnResize"?: ((...args: any[]) => any) | undefined; "onUpdate:resolveLabelOverlapping"?: ((...args: any[]) => any) | undefined; "onUpdate:size"?: ((...args: any[]) => any) | undefined; "onUpdate:theme"?: ((...args: any[]) => any) | undefined; "onUpdate:tooltip"?: ((...args: any[]) => any) | undefined; "onUpdate:selectionMode"?: ((...args: any[]) => any) | undefined; "onUpdate:adaptiveLayout"?: ((...args: any[]) => any) | undefined; "onUpdate:onLegendClick"?: ((...args: any[]) => any) | undefined; "onUpdate:inverted"?: ((...args: any[]) => any) | undefined; "onUpdate:argumentField"?: ((...args: any[]) => any) | undefined; "onUpdate:valueField"?: ((...args: any[]) => any) | undefined; "onUpdate:algorithm"?: ((...args: any[]) => any) | undefined; "onUpdate:colorField"?: ((...args: any[]) => any) | undefined; "onUpdate:hoverEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:item"?: ((...args: any[]) => any) | undefined; "onUpdate:neckHeight"?: ((...args: any[]) => any) | undefined; "onUpdate:neckWidth"?: ((...args: any[]) => any) | undefined; "onUpdate:onHoverChanged"?: ((...args: any[]) => any) | undefined; "onUpdate:sortData"?: ((...args: any[]) => any) | undefined; }, { disabled: boolean; rtlEnabled: boolean; pathModified: boolean; redrawOnResize: boolean; inverted: boolean; hoverEnabled: boolean; sortData: boolean; }>; declare const DxAdaptiveLayout: import("@vue/runtime-core").DefineComponent<{ height: NumberConstructor; keepLabels: BooleanConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:height": null; "update:keepLabels": null; "update:width": null; }, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{ height: NumberConstructor; keepLabels: BooleanConstructor; width: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:height"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:keepLabels"?: ((...args: any[]) => any) | undefined; }, { keepLabels: boolean; }>; declare const DxBorder: import("@vue/runtime-core").DefineComponent<{ color: StringConstructor; cornerRadius: NumberConstructor; dashStyle: PropType<DashStyle>; opacity: NumberConstructor; visible: BooleanConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:color": null; "update:cornerRadius": null; "update:dashStyle": null; "update:opacity": null; "update:visible": null; "update:width": null; }, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{ color: StringConstructor; cornerRadius: NumberConstructor; dashStyle: PropType<DashStyle>; opacity: NumberConstructor; visible: BooleanConstructor; width: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:opacity"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:cornerRadius"?: ((...args: any[]) => any) | undefined; "onUpdate:dashStyle"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; }>; declare const DxConnector: import("@vue/runtime-core").DefineComponent<{ color: StringConstructor; opacity: NumberConstructor; visible: BooleanConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:color": null; "update:opacity": null; "update:visible": null; "update:width": null; }, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{ color: StringConstructor; opacity: NumberConstructor; visible: BooleanConstructor; width: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:opacity"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; }>; declare const DxExport: import("@vue/runtime-core").DefineComponent<{ backgroundColor: StringConstructor; enabled: BooleanConstructor; fileName: StringConstructor; formats: PropType<ExportFormat[]>; margin: NumberConstructor; printingEnabled: BooleanConstructor; svgToCanvas: PropType<(svg: any, canvas: any) => any>; }, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:backgroundColor": null; "update:enabled": null; "update:fileName": null; "update:formats": null; "update:margin": null; "update:printingEnabled": null; "update:svgToCanvas": null; }, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{ backgroundColor: StringConstructor; enabled: BooleanConstructor; fileName: StringConstructor; formats: PropType<ExportFormat[]>; margin: NumberConstructor; printingEnabled: BooleanConstructor; svgToCanvas: PropType<(svg: any, canvas: any) => any>; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:backgroundColor"?: ((...args: any[]) => any) | undefined; "onUpdate:margin"?: ((...args: any[]) => any) | undefined; "onUpdate:enabled"?: ((...args: any[]) => any) | undefined; "onUpdate:fileName"?: ((...args: any[]) => any) | undefined; "onUpdate:formats"?: ((...args: any[]) => any) | undefined; "onUpdate:printingEnabled"?: ((...args: any[]) => any) | undefined; "onUpdate:svgToCanvas"?: ((...args: any[]) => any) | undefined; }, { enabled: boolean; printingEnabled: boolean; }>; declare const DxFont: import("@vue/runtime-core").DefineComponent<{ color: StringConstructor; family: StringConstructor; opacity: NumberConstructor; size: (NumberConstructor | StringConstructor)[]; weight: NumberConstructor; }, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:color": null; "update:family": null; "update:opacity": null; "update:size": null; "update:weight": null; }, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{ color: StringConstructor; family: StringConstructor; opacity: NumberConstructor; size: (NumberConstructor | StringConstructor)[]; weight: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:opacity"?: ((...args: any[]) => any) | undefined; "onUpdate:size"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:family"?: ((...args: any[]) => any) | undefined; "onUpdate:weight"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxFormat: import("@vue/runtime-core").DefineComponent<{ currency: StringConstructor; formatter: PropType<(value: number | Date) => string>; parser: PropType<(value: string) => number | Date>; precision: NumberConstructor; type: PropType<string>; useCurrencyAccountingStyle: BooleanConstructor; }, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:currency": null; "update:formatter": null; "update:parser": null; "update:precision": null; "update:type": null; "update:useCurrencyAccountingStyle": null; }, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{ currency: StringConstructor; formatter: PropType<(value: number | Date) => string>; parser: PropType<(value: string) => number | Date>; precision: NumberConstructor; type: PropType<string>; useCurrencyAccountingStyle: BooleanConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:type"?: ((...args: any[]) => any) | undefined; "onUpdate:currency"?: ((...args: any[]) => any) | undefined; "onUpdate:formatter"?: ((...args: any[]) => any) | undefined; "onUpdate:parser"?: ((...args: any[]) => any) | undefined; "onUpdate:precision"?: ((...args: any[]) => any) | undefined; "onUpdate:useCurrencyAccountingStyle"?: ((...args: any[]) => any) | undefined; }, { useCurrencyAccountingStyle: boolean; }>; declare const DxFunnelTitle: import("@vue/runtime-core").DefineComponent<{ font: PropType<Record<string, any> | Font>; horizontalAlignment: PropType<HorizontalAlignment>; margin: PropType<number | Record<string, any>>; placeholderSize: NumberConstructor; subtitle: PropType<string | Record<string, any>>; text: StringConstructor; textOverflow: PropType<TextOverflow>; verticalAlignment: PropType<VerticalEdge>; wordWrap: PropType<WordWrap>; }, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:font": null; "update:horizontalAlignment": null; "update:margin": null; "update:placeholderSize": null; "update:subtitle": null; "update:text": null; "update:textOverflow": null; "update:verticalAlignment": null; "update:wordWrap": null; }, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{ font: PropType<Record<string, any> | Font>; horizontalAlignment: PropType<HorizontalAlignment>; margin: PropType<number | Record<string, any>>; placeholderSize: NumberConstructor; subtitle: PropType<string | Record<string, any>>; text: StringConstructor; textOverflow: PropType<TextOverflow>; verticalAlignment: PropType<VerticalEdge>; wordWrap: PropType<WordWrap>; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:text"?: ((...args: any[]) => any) | undefined; "onUpdate:margin"?: ((...args: any[]) => any) | undefined; "onUpdate:font"?: ((...args: any[]) => any) | undefined; "onUpdate:horizontalAlignment"?: ((...args: any[]) => any) | undefined; "onUpdate:placeholderSize"?: ((...args: any[]) => any) | undefined; "onUpdate:subtitle"?: ((...args: any[]) => any) | undefined; "onUpdate:textOverflow"?: ((...args: any[]) => any) | undefined; "onUpdate:verticalAlignment"?: ((...args: any[]) => any) | undefined; "onUpdate:wordWrap"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxFunnelTitleSubtitle: import("@vue/runtime-core").DefineComponent<{ font: PropType<Record<string, any> | Font>; offset: NumberConstructor; text: StringConstructor; textOverflow: PropType<TextOverflow>; wordWrap: PropType<WordWrap>; }, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:font": null; "update:offset": null; "update:text": null; "update:textOverflow": null; "update:wordWrap": null; }, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{ font: PropType<Record<string, any> | Font>; offset: NumberConstructor; text: StringConstructor; textOverflow: PropType<TextOverflow>; wordWrap: PropType<WordWrap>; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:text"?: ((...args: any[]) => any) | undefined; "onUpdate:offset"?: ((...args: any[]) => any) | undefined; "onUpdate:font"?: ((...args: any[]) => any) | undefined; "onUpdate:textOverflow"?: ((...args: any[]) => any) | undefined; "onUpdate:wordWrap"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxHatching: import("@vue/runtime-core").DefineComponent<{ direction: PropType<HatchDirection>; opacity: NumberConstructor; step: NumberConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:direction": null; "update:opacity": null; "update:step": null; "update:width": null; }, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{ direction: PropType<HatchDirection>; opacity: NumberConstructor; step: NumberConstructor; width: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:opacity"?: ((...args: any[]) => any) | undefined; "onUpdate:direction"?: ((...args: any[]) => any) | undefined; "onUpdate:step"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxHoverStyle: import("@vue/runtime-core").DefineComponent<{ border: PropType<Record<string, any>>; hatching: PropType<Record<string, any>>; }, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:border": null; "update:hatching": null; }, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{ border: PropType<Record<string, any>>; hatching: PropType<Record<string, any>>; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:border"?: ((...args: any[]) => any) | undefined; "onUpdate:hatching"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxItem: import("@vue/runtime-core").DefineComponent<{ border: PropType<Record<string, any>>; hoverStyle: PropType<Record<string, any>>; selectionStyle: PropType<Record<string, any>>; }, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:border": null; "update:hoverStyle": null; "update:selectionStyle": null; }, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{ border: PropType<Record<string, any>>; hoverStyle: PropType<Record<string, any>>; selectionStyle: PropType<Record<string, any>>; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:border"?: ((...args: any[]) => any) | undefined; "onUpdate:hoverStyle"?: ((...args: any[]) => any) | undefined; "onUpdate:selectionStyle"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxItemBorder: import("@vue/runtime-core").DefineComponent<{ color: StringConstructor; visible: BooleanConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:color": null; "update:visible": null; "update:width": null; }, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{ color: StringConstructor; visible: BooleanConstructor; width: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; }>; declare const DxLabel: import("@vue/runtime-core").DefineComponent<{ backgroundColor: StringConstructor; border: PropType<Record<string, any>>; connector: PropType<Record<string, any>>; customizeText: PropType<(itemInfo: { item: dxFunnelItem; percent: number; percentText: string; value: number; valueText: string; }) => string>; font: PropType<Record<string, any> | Font>; format: PropType<string | Record<string, any> | import("devextreme/artifacts/npm/devextreme/common/core/localization").FormatObject | ((value: number | Date) => string) | ((value: Date) => string) | ((value: number) => string) | Intl.DateTimeFormatOptions | Intl.NumberFormatOptions | ((value: number | Date) => string) | undefined>; horizontalAlignment: PropType<HorizontalEdge>; horizontalOffset: NumberConstructor; position: PropType<LabelPosition>; showForZeroValues: BooleanConstructor; textOverflow: PropType<TextOverflow>; visible: BooleanConstructor; wordWrap: PropType<WordWrap>; }, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:backgroundColor": null; "update:border": null; "update:connector": null; "update:customizeText": null; "update:font": null; "update:format": null; "update:horizontalAlignment": null; "update:horizontalOffset": null; "update:position": null; "update:showForZeroValues": null; "update:textOverflow": null; "update:visible": null; "update:wordWrap": null; }, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{ backgroundColor: StringConstructor; border: PropType<Record<string, any>>; connector: PropType<Record<string, any>>; customizeText: PropType<(itemInfo: { item: dxFunnelItem; percent: number; percentText: string; value: number; valueText: string; }) => string>; font: PropType<Record<string, any> | Font>; format: PropType<string | Record<string, any> | import("devextreme/artifacts/npm/devextreme/common/core/localization").FormatObject | ((value: number | Date) => string) | ((value: Date) => string) | ((value: number) => string) | Intl.DateTimeFormatOptions | Intl.NumberFormatOptions | ((value: number | Date) => string) | undefined>; horizontalAlignment: PropType<HorizontalEdge>; horizontalOffset: NumberConstructor; position: PropType<LabelPosition>; showForZeroValues: BooleanConstructor; textOverflow: PropType<TextOverflow>; visible: BooleanConstructor; wordWrap: PropType<WordWrap>; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:position"?: ((...args: any[]) => any) | undefined; "onUpdate:backgroundColor"?: ((...args: any[]) => any) | undefined; "onUpdate:font"?: ((...args: any[]) => any) | undefined; "onUpdate:horizontalAlignment"?: ((...args: any[]) => any) | undefined; "onUpdate:textOverflow"?: ((...args: any[]) => any) | undefined; "onUpdate:wordWrap"?: ((...args: any[]) => any) | undefined; "onUpdate:customizeText"?: ((...args: any[]) => any) | undefined; "onUpdate:format"?: ((...args: any[]) => any) | undefined; "onUpdate:border"?: ((...args: any[]) => any) | undefined; "onUpdate:connector"?: ((...args: any[]) => any) | undefined; "onUpdate:horizontalOffset"?: ((...args: any[]) => any) | undefined; "onUpdate:showForZeroValues"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; showForZeroValues: boolean; }>; declare const DxLabelBorder: import("@vue/runtime-core").DefineComponent<{ color: StringConstructor; dashStyle: PropType<DashStyle>; visible: BooleanConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:color": null; "update:dashStyle": null; "update:visible": null; "update:width": null; }, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{ color: StringConstructor; dashStyle: PropType<DashStyle>; visible: BooleanConstructor; width: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:dashStyle"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; }>; declare const DxLegend: import("@vue/runtime-core").DefineComponent<{ backgroundColor: StringConstructor; border: PropType<Record<string, any>>; columnCount: NumberConstructor; columnItemSpacing: NumberConstructor; customizeHint: PropType<(itemInfo: { item: dxFunnelItem; text: string; }) => string>; customizeItems: PropType<(items: Array<FunnelLegendItem>) => Array<FunnelLegendItem>>; customizeText: PropType<(itemInfo: { item: dxFunnelItem; text: string; }) => string>; font: PropType<Record<string, any> | Font>; horizontalAlignment: PropType<HorizontalAlignment>; itemsAlignment: PropType<HorizontalAlignment>; itemTextPosition: PropType<Position>; margin: PropType<number | Record<string, any>>; markerSize: NumberConstructor; markerTemplate: {}; orientation: PropType<Orientation>; paddingLeftRight: NumberConstructor; paddingTopBottom: NumberConstructor; rowCount: NumberConstructor; rowItemSpacing: NumberConstructor; title: PropType<string | Record<string, any>>; verticalAlignment: PropType<VerticalEdge>; visible: BooleanConstructor; }, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:backgroundColor": null; "update:border": null; "update:columnCount": null; "update:columnItemSpacing": null; "update:customizeHint": null; "update:customizeItems": null; "update:customizeText": null; "update:font": null; "update:horizontalAlignment": null; "update:itemsAlignment": null; "update:itemTextPosition": null; "update:margin": null; "update:markerSize": null; "update:markerTemplate": null; "update:orientation": null; "update:paddingLeftRight": null; "update:paddingTopBottom": null; "update:rowCount": null; "update:rowItemSpacing": null; "update:title": null; "update:verticalAlignment": null; "update:visible": null; }, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{ backgroundColor: StringConstructor; border: PropType<Record<string, any>>; columnCount: NumberConstructor; columnItemSpacing: NumberConstructor; customizeHint: PropType<(itemInfo: { item: dxFunnelItem; text: string; }) => string>; customizeItems: PropType<(items: Array<FunnelLegendItem>) => Array<FunnelLegendItem>>; customizeText: PropType<(itemInfo: { item: dxFunnelItem; text: string; }) => string>; font: PropType<Record<string, any> | Font>; horizontalAlignment: PropType<HorizontalAlignment>; itemsAlignment: PropType<HorizontalAlignment>; itemTextPosition: PropType<Position>; margin: PropType<number | Record<string, any>>; markerSize: NumberConstructor; markerTemplate: {}; orientation: PropType<Orientation>; paddingLeftRight: NumberConstructor; paddingTopBottom: NumberConstructor; rowCount: NumberConstructor; rowItemSpacing: NumberConstructor; title: PropType<string | Record<string, any>>; verticalAlignment: PropType<VerticalEdge>; visible: BooleanConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:title"?: ((...args: any[]) => any) | undefined; "onUpdate:backgroundColor"?: ((...args: any[]) => any) | undefined; "onUpdate:margin"?: ((...args: any[]) => any) | undefined; "onUpdate:font"?: ((...args: any[]) => any) | undefined; "onUpdate:horizontalAlignment"?: ((...args: any[]) => any) | undefined; "onUpdate:verticalAlignment"?: ((...args: any[]) => any) | undefined; "onUpdate:customizeText"?: ((...args: any[]) => any) | undefined; "onUpdate:border"?: ((...args: any[]) => any) | undefined; "onUpdate:columnCount"?: ((...args: any[]) => any) | undefined; "onUpdate:columnItemSpacing"?: ((...args: any[]) => any) | undefined; "onUpdate:customizeHint"?: ((...args: any[]) => any) | undefined; "onUpdate:customizeItems"?: ((...args: any[]) => any) | undefined; "onUpdate:itemsAlignment"?: ((...args: any[]) => any) | undefined; "onUpdate:itemTextPosition"?: ((...args: any[]) => any) | undefined; "onUpdate:markerSize"?: ((...args: any[]) => any) | undefined; "onUpdate:markerTemplate"?: ((...args: any[]) => any) | undefined; "onUpdate:orientation"?: ((...args: any[]) => any) | undefined; "onUpdate:paddingLeftRight"?: ((...args: any[]) => any) | undefined; "onUpdate:paddingTopBottom"?: ((...args: any[]) => any) | undefined; "onUpdate:rowCount"?: ((...args: any[]) => any) | undefined; "onUpdate:rowItemSpacing"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; }>; declare const DxLegendBorder: import("@vue/runtime-core").DefineComponent<{ color: StringConstructor; cornerRadius: NumberConstructor; dashStyle: PropType<DashStyle>; opacity: NumberConstructor; visible: BooleanConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:color": null; "update:cornerRadius": null; "update:dashStyle": null; "update:opacity": null; "update:visible": null; "update:width": null; }, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{ color: StringConstructor; cornerRadius: NumberConstructor; dashStyle: PropType<DashStyle>; opacity: NumberConstructor; visible: BooleanConstructor; width: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:visible"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; "onUpdate:opacity"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:cornerRadius"?: ((...args: any[]) => any) | undefined; "onUpdate:dashStyle"?: ((...args: any[]) => any) | undefined; }, { visible: boolean; }>; declare const DxLegendTitle: import("@vue/runtime-core").DefineComponent<{ font: PropType<Record<string, any> | Font>; horizontalAlignment: PropType<HorizontalAlignment>; margin: PropType<Record<string, any>>; placeholderSize: NumberConstructor; subtitle: PropType<string | Record<string, any>>; text: StringConstructor; verticalAlignment: PropType<VerticalEdge>; }, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:font": null; "update:horizontalAlignment": null; "update:margin": null; "update:placeholderSize": null; "update:subtitle": null; "update:text": null; "update:verticalAlignment": null; }, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{ font: PropType<Record<string, any> | Font>; horizontalAlignment: PropType<HorizontalAlignment>; margin: PropType<Record<string, any>>; placeholderSize: NumberConstructor; subtitle: PropType<string | Record<string, any>>; text: StringConstructor; verticalAlignment: PropType<VerticalEdge>; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:text"?: ((...args: any[]) => any) | undefined; "onUpdate:margin"?: ((...args: any[]) => any) | undefined; "onUpdate:font"?: ((...args: any[]) => any) | undefined; "onUpdate:horizontalAlignment"?: ((...args: any[]) => any) | undefined; "onUpdate:placeholderSize"?: ((...args: any[]) => any) | undefined; "onUpdate:subtitle"?: ((...args: any[]) => any) | undefined; "onUpdate:verticalAlignment"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxLegendTitleSubtitle: import("@vue/runtime-core").DefineComponent<{ font: PropType<Record<string, any> | Font>; offset: NumberConstructor; text: StringConstructor; }, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:font": null; "update:offset": null; "update:text": null; }, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{ font: PropType<Record<string, any> | Font>; offset: NumberConstructor; text: StringConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:text"?: ((...args: any[]) => any) | undefined; "onUpdate:offset"?: ((...args: any[]) => any) | undefined; "onUpdate:font"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxLoadingIndicator: import("@vue/runtime-core").DefineComponent<{ backgroundColor: StringConstructor; enabled: BooleanConstructor; font: PropType<Record<string, any> | Font>; show: BooleanConstructor; text: StringConstructor; }, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:backgroundColor": null; "update:enabled": null; "update:font": null; "update:show": null; "update:text": null; }, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{ backgroundColor: StringConstructor; enabled: BooleanConstructor; font: PropType<Record<string, any> | Font>; show: BooleanConstructor; text: StringConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:text"?: ((...args: any[]) => any) | undefined; "onUpdate:show"?: ((...args: any[]) => any) | undefined; "onUpdate:backgroundColor"?: ((...args: any[]) => any) | undefined; "onUpdate:enabled"?: ((...args: any[]) => any) | undefined; "onUpdate:font"?: ((...args: any[]) => any) | undefined; }, { show: boolean; enabled: boolean; }>; declare const DxMargin: import("@vue/runtime-core").DefineComponent<{ bottom: NumberConstructor; left: NumberConstructor; right: NumberConstructor; top: NumberConstructor; }, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:bottom": null; "update:left": null; "update:right": null; "update:top": null; }, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{ bottom: NumberConstructor; left: NumberConstructor; right: NumberConstructor; top: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:left"?: ((...args: any[]) => any) | undefined; "onUpdate:top"?: ((...args: any[]) => any) | undefined; "onUpdate:bottom"?: ((...args: any[]) => any) | undefined; "onUpdate:right"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxSelectionStyle: import("@vue/runtime-core").DefineComponent<{ border: PropType<Record<string, any>>; hatching: PropType<Record<string, any>>; }, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:border": null; "update:hatching": null; }, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{ border: PropType<Record<string, any>>; hatching: PropType<Record<string, any>>; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:border"?: ((...args: any[]) => any) | undefined; "onUpdate:hatching"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxShadow: import("@vue/runtime-core").DefineComponent<{ blur: NumberConstructor; color: StringConstructor; offsetX: NumberConstructor; offsetY: NumberConstructor; opacity: NumberConstructor; }, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:blur": null; "update:color": null; "update:offsetX": null; "update:offsetY": null; "update:opacity": null; }, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{ blur: NumberConstructor; color: StringConstructor; offsetX: NumberConstructor; offsetY: NumberConstructor; opacity: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:opacity"?: ((...args: any[]) => any) | undefined; "onUpdate:color"?: ((...args: any[]) => any) | undefined; "onUpdate:blur"?: ((...args: any[]) => any) | undefined; "onUpdate:offsetX"?: ((...args: any[]) => any) | undefined; "onUpdate:offsetY"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxSize: import("@vue/runtime-core").DefineComponent<{ height: NumberConstructor; width: NumberConstructor; }, unknown, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, { "update:isActive": null; "update:hoveredElement": null; "update:height": null; "update:width": null; }, string, import("@vue/runtime-core").VNodeProps & import("@vue/runtime-core").AllowedComponentProps & import("@vue/runtime-core").ComponentCustomProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{ height: NumberConstructor; width: NumberConstructor; }>> & { "onUpdate:isActive"?: ((...args: any[]) => any) | undefined; "onUpdate:hoveredElement"?: ((...args: any[]) => any) | undefined; "onUpdate:height"?: ((...args: any[]) => any) | undefined; "onUpdate:width"?: ((...args: any[]) => any) | undefined; }, {}>; declare const DxSubtitle: import("@vue/runtime-core").DefineComponent<{ font: PropType<Record<string, any> | Font>; offset: NumberConstructor; text: StringConstructor; textOverflow: PropType<TextOverflow>; wordWrap: PropType<WordWrap>; }, unknown, unknown,