import * as vue from 'vue'; import { ShallowRef, Ref, DeepReadonly, ComponentPublicInstance, FunctionalComponent, ComponentPropsOptions, ExtractPropTypes, PropType, CSSProperties, MaybeRefOrGetter, EffectScope, nextTick, VNodeProps, App } from 'vue'; import * as _vue_reactivity from '@vue/reactivity'; interface LocaleMessages { [key: string]: LocaleMessages | string; } interface LocaleOptions { decimalSeparator?: string; messages?: LocaleMessages; locale?: string; fallback?: string; adapter?: LocaleInstance; } interface LocaleInstance { name: string; decimalSeparator: ShallowRef; messages: Ref; current: Ref; fallback: Ref; t: (key: string, ...params: unknown[]) => string; n: (value: number) => string; provide: (props: LocaleOptions) => LocaleInstance; } declare function useLocale(): LocaleInstance & RtlInstance; interface RtlOptions { rtl?: Record; } interface RtlInstance { isRtl: Ref; rtl: Ref>; rtlClasses: Ref; } declare function useRtl(): { isRtl: Ref; rtlClasses: Ref; }; declare const block: readonly ['top', 'bottom']; declare const inline: readonly ['start', 'end', 'left', 'right']; type Tblock = (typeof block)[number]; type Tinline = (typeof inline)[number]; type Anchor = Tblock | Tinline | 'center' | 'center center' | `${Tblock} ${Tinline | 'center'}` | `${Tinline} ${Tblock | 'center'}`; declare class Box { x: number; y: number; width: number; height: number; constructor(args: Element | { x: number; y: number; width: number; height: number; }); get top(): number; get bottom(): number; get left(): number; get right(): number; } type DeepPartial = T extends object ? { [P in keyof T]?: DeepPartial; } : T; type ThemeOptions = false | { cspNonce?: string; defaultTheme?: 'light' | 'dark' | 'system' | (string & {}); variations?: false | VariationsOptions; themes?: Record; stylesheetId?: string; scope?: string; utilities?: boolean; }; type ThemeDefinition = DeepPartial; interface VariationsOptions { colors: string[]; lighten: number; darken: number; } interface InternalThemeDefinition { dark: boolean; colors: Colors; variables: Record; } interface Colors extends BaseColors, OnColors { [key: string]: Color; } interface BaseColors { background: Color; surface: Color; primary: Color; secondary: Color; success: Color; warning: Color; error: Color; info: Color; } interface OnColors { 'on-background': Color; 'on-surface': Color; 'on-primary': Color; 'on-secondary': Color; 'on-success': Color; 'on-warning': Color; 'on-error': Color; 'on-info': Color; } interface ThemeInstance { change: (themeName: string) => void; cycle: (themeArray?: string[]) => void; toggle: (themeArray?: [string, string]) => void; readonly isDisabled: boolean; readonly isSystem: Readonly>; readonly themes: Ref>; readonly name: Readonly>; readonly current: DeepReadonly>; readonly computedThemes: DeepReadonly>>; readonly prefix: string; readonly themeClasses: Readonly>; readonly styles: Readonly>; readonly global: { readonly name: Ref; readonly current: DeepReadonly>; }; } declare function useTheme(): ThemeInstance; type HSV = { h: number; s: number; v: number; a?: number; }; type RGB = { r: number; g: number; b: number; a?: number; }; type HSL = { h: number; s: number; l: number; a?: number; }; type Color = string | number | HSV | RGB | HSL; interface FilterPropsOptions, Props = ExtractPropTypes> { filterProps, U extends Exclude>>(props: T): Partial>; } type JSXComponent = { new (): ComponentPublicInstance; } | FunctionalComponent; type ValueComparator = (a: any, b: any) => boolean; type EasingFunction = (n: number) => number; type SelectItemKey> = boolean | null | undefined | string | readonly (string | number)[] | ((item: T, fallback?: any) => any); type MaybeRef = T | Ref; type EventProp void> = F; declare const EventProp: () => PropType>; type TemplateRef = { (target: Element | ComponentPublicInstance | null): void; value: HTMLElement | ComponentPublicInstance | null | undefined; readonly el: HTMLElement | undefined; }; interface GoToInstance { rtl: Ref; options: InternalGoToOptions; } interface InternalGoToOptions { container: ComponentPublicInstance | HTMLElement | string; duration: number; layout: boolean; offset: number; easing: string | EasingFunction; patterns: Record; } type GoToOptions = Partial; declare function useGoTo(_options?: GoToOptions): { (target: ComponentPublicInstance | HTMLElement | string | number, options?: Partial): Promise; horizontal: (target: ComponentPublicInstance | HTMLElement | string | number, options?: Partial) => Promise; }; interface DateAdapter { date(value?: any): T | null; format(date: T, formatString: string): string; toJsDate(value: T): Date; parseISO(date: string): T; toISO(date: T): string; startOfDay(date: T): T; endOfDay(date: T): T; startOfWeek(date: T, firstDayOfWeek?: number | string): T; endOfWeek(date: T): T; startOfMonth(date: T): T; endOfMonth(date: T): T; startOfYear(date: T): T; endOfYear(date: T): T; isAfter(date: T, comparing: T): boolean; isAfterDay(date: T, comparing: T): boolean; isSameDay(date: T, comparing: T): boolean; isSameMonth(date: T, comparing: T): boolean; isSameYear(date: T, comparing: T): boolean; isBefore(date: T, comparing: T): boolean; isEqual(date: T, comparing: T): boolean; isValid(date: any): boolean; isWithinRange(date: T, range: [T, T]): boolean; addMinutes(date: T, amount: number): T; addHours(date: T, amount: number): T; addDays(date: T, amount: number): T; addWeeks(date: T, amount: number): T; addMonths(date: T, amount: number): T; getYear(date: T): number; setYear(date: T, year: number): T; getDiff(date: T, comparing: T | string, unit?: string): number; getWeekArray(date: T, firstDayOfWeek?: number | string): T[][]; getWeekdays(firstDayOfWeek?: number | string, weekdayFormat?: 'long' | 'short' | 'narrow'): string[]; getWeek(date: T, firstDayOfWeek?: number | string, firstDayOfYear?: number | string): number; getMonth(date: T): number; setMonth(date: T, month: number): T; getDate(date: T): number; setDate(date: T, day: number): T; getNextMonth(date: T): T; getPreviousMonth(date: T): T; getHours(date: T): number; setHours(date: T, hours: number): T; getMinutes(date: T): number; setMinutes(date: T, minutes: number): T; } interface DateInstance extends DateModule.InternalAdapter { locale?: any; } /** Supports module augmentation to specify date adapter types */ declare namespace DateModule { interface Adapter { } export type InternalAdapter = {} extends Adapter ? DateAdapter : Adapter; } type InternalDateOptions = { adapter: (new (options: { locale: any; formats?: any; }) => DateInstance) | DateInstance; formats?: Record; locale: Record; }; type DateOptions = Partial; declare function useDate(): DateInstance; type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent; declare const IconValue: PropType; interface IconAliases { [name: string]: IconValue; collapse: IconValue; complete: IconValue; cancel: IconValue; close: IconValue; delete: IconValue; clear: IconValue; success: IconValue; info: IconValue; warning: IconValue; error: IconValue; prev: IconValue; next: IconValue; checkboxOn: IconValue; checkboxOff: IconValue; checkboxIndeterminate: IconValue; delimiter: IconValue; sortAsc: IconValue; sortDesc: IconValue; expand: IconValue; menu: IconValue; subgroup: IconValue; dropdown: IconValue; radioOn: IconValue; radioOff: IconValue; edit: IconValue; ratingEmpty: IconValue; ratingFull: IconValue; ratingHalf: IconValue; loading: IconValue; first: IconValue; last: IconValue; unfold: IconValue; file: IconValue; plus: IconValue; minus: IconValue; calendar: IconValue; treeviewCollapse: IconValue; treeviewExpand: IconValue; eyeDropper: IconValue; upload: IconValue; color: IconValue; command: IconValue; ctrl: IconValue; space: IconValue; shift: IconValue; alt: IconValue; enter: IconValue; arrowup: IconValue; arrowdown: IconValue; arrowleft: IconValue; arrowright: IconValue; backspace: IconValue; } interface IconProps { tag: string | JSXComponent; icon?: IconValue; disabled?: boolean; } type IconComponent = JSXComponent; interface IconSet { component: IconComponent; } type InternalIconOptions = { defaultSet: string; aliases: Partial; sets: Record; }; type IconOptions = Partial; declare const breakpoints: readonly ['sm', 'md', 'lg', 'xl', 'xxl']; type Breakpoint = (typeof breakpoints)[number]; type DisplayBreakpoint = 'xs' | Breakpoint; type DisplayThresholds = { [key in DisplayBreakpoint]: number; }; interface DisplayProps { mobile?: boolean | null; mobileBreakpoint?: number | DisplayBreakpoint; } interface DisplayOptions { mobileBreakpoint?: number | DisplayBreakpoint; thresholds?: Partial; } type SSROptions = boolean | { clientWidth: number; clientHeight?: number; }; interface DisplayPlatform { android: boolean; ios: boolean; cordova: boolean; electron: boolean; chrome: boolean; edge: boolean; firefox: boolean; opera: boolean; win: boolean; mac: boolean; linux: boolean; touch: boolean; ssr: boolean; } interface DisplayInstance { xs: Ref; sm: Ref; md: Ref; lg: Ref; xl: Ref; xxl: Ref; smAndUp: Ref; mdAndUp: Ref; lgAndUp: Ref; xlAndUp: Ref; smAndDown: Ref; mdAndDown: Ref; lgAndDown: Ref; xlAndDown: Ref; name: Ref; height: Ref; width: Ref; mobile: Ref; mobileBreakpoint: Ref; platform: Ref; thresholds: Ref; update(): void; } declare function useDisplay(props?: DisplayProps, name?: string): { xs: Ref; sm: Ref; md: Ref; lg: Ref; xl: Ref; xxl: Ref; smAndUp: Ref; mdAndUp: Ref; lgAndUp: Ref; xlAndUp: Ref; smAndDown: Ref; mdAndDown: Ref; lgAndDown: Ref; xlAndDown: Ref; name: Ref; height: Ref; width: Ref; mobileBreakpoint: Ref; platform: Ref; thresholds: Ref; /** @internal */ ssr: boolean; update(): void; displayClasses: Readonly>; mobile: vue.ComputedRef; }; type DefaultsInstance = undefined | { [key: string]: undefined | Record; global?: Record; }; type DefaultsOptions = Partial; declare function useDefaults>(props: T, name?: string): T; declare function useDefaults(props?: undefined, name?: string): Record; type Position = 'top' | 'left' | 'right' | 'bottom'; interface Layer { top: number; bottom: number; left: number; right: number; } interface LayoutItem extends Layer { id: string; size: number; position: Position; } declare function useLayout(): { getLayoutItem: (id: string) => LayoutItem | undefined; mainRect: Ref; mainStyles: Ref; }; interface HotkeyOptions { event?: MaybeRef<'keydown' | 'keyup'>; inputs?: MaybeRef; preventDefault?: MaybeRef; sequenceTimeout?: MaybeRef; } declare function useHotkey(keys: MaybeRef, callback: (e: KeyboardEvent) => void, options?: HotkeyOptions): () => void; interface MaskProps { mask: string | MaskOptions | undefined; } interface MaskOptions { mask: string; tokens: Record; } type MaskItem = { convert?: (char: string) => string; } & ({ pattern?: never; test: (char: string) => boolean; } | { pattern: RegExp; test?: never; }); declare function useMask(props: MaskProps): { isDelimiter: (text: string, index: number) => boolean; isValid: (text: string) => boolean; isComplete: (text: string) => boolean; mask: (text: string | null | undefined) => string; unmask: (text: string | null) => string | null; }; /** * - boolean: match without highlight * - number: single match (index), length already known * - []: single match (start, end) * - [][]: multiple matches (start, end), shouldn't overlap */ type FilterMatchArraySingle = readonly [number, number]; type FilterMatchArrayMultiple = readonly FilterMatchArraySingle[]; type FilterMatchArray = FilterMatchArraySingle | FilterMatchArrayMultiple; type FilterMatch = boolean | number | FilterMatchArray; type FilterFunction = (value: string, query: string, item?: InternalItem) => FilterMatch; interface InternalItem { value: any; raw: T; type?: string; } type ValidationResult = string | boolean; type ValidationRule = ValidationResult | PromiseLike | ((value: any) => ValidationResult) | ((value: any) => PromiseLike); interface FieldValidationResult { id: number | string; errorMessages: string[]; } interface FormValidationResult { valid: boolean; errors: FieldValidationResult[]; } interface SubmitEventPromise extends SubmitEvent, Promise { } type ActiveStrategyFunction = (data: { id: unknown; value: boolean; activated: Set; children: Map; parents: Map; event?: Event; }) => Set; type ActiveStrategyTransformInFunction = (v: unknown | undefined, children: Map, parents: Map) => Set; type ActiveStrategyTransformOutFunction = (v: Set, children: Map, parents: Map) => unknown; type ActiveStrategy = { activate: ActiveStrategyFunction; in: ActiveStrategyTransformInFunction; out: ActiveStrategyTransformOutFunction; }; type OpenStrategyFunction = (data: { id: unknown; value: boolean; opened: Set; children: Map; parents: Map; event?: Event; }) => Set; type OpenSelectStrategyFunction = (data: { id: unknown; value: boolean; opened: Set; selected: Map; children: Map; parents: Map; event?: Event; }) => Set | null; type OpenStrategy = { open: OpenStrategyFunction; select: OpenSelectStrategyFunction; }; type SelectStrategyFunction = (data: { id: unknown; value: boolean; selected: Map; children: Map; parents: Map; disabled: Set; event?: Event; }) => Map; type SelectStrategyTransformInFunction = (v: readonly unknown[] | undefined, children: Map, parents: Map, disabled: Set) => Map; type SelectStrategyTransformOutFunction = (v: Map, children: Map, parents: Map) => unknown[]; type SelectStrategy = { select: SelectStrategyFunction; in: SelectStrategyTransformInFunction; out: SelectStrategyTransformOutFunction; }; type ExpandProps = { expandOnClick: boolean; expanded: readonly string[]; 'onUpdate:expanded': ((value: any[]) => void) | undefined; }; declare function provideExpanded(props: ExpandProps): { expand: (item: DataTableItem, value: boolean) => void; expanded: Ref, Set> & { readonly externalValue: readonly string[]; }; expandOnClick: Readonly>; isExpanded: (item: DataTableItem) => boolean; toggleExpand: (item: DataTableItem) => void; }; type SortItem = { key: string; order?: boolean | 'asc' | 'desc'; }; interface GroupableItem { type: 'item'; raw: T; } interface DataTableItemProps { items: any[]; itemValue: SelectItemKey; itemSelectable: SelectItemKey; returnObject: boolean; } interface SelectableItem { value: any; selectable: boolean; } interface DataTableSelectStrategy { showSelectAll: boolean; allSelected: (data: { allItems: SelectableItem[]; currentPage: SelectableItem[]; }) => SelectableItem[]; select: (data: { items: SelectableItem[]; value: boolean; selected: Set; }) => Set; selectAll: (data: { value: boolean; allItems: SelectableItem[]; currentPage: SelectableItem[]; selected: Set; }) => Set; } type SelectionProps = Pick & { modelValue: readonly any[]; selectStrategy: 'single' | 'page' | 'all'; valueComparator?: ValueComparator; 'onUpdate:modelValue': EventProp<[any[]]> | undefined; }; declare function provideSelection(props: SelectionProps, { allItems, currentPage }: { allItems: Ref; currentPage: MaybeRefOrGetter; }): { toggleSelect: (item: SelectableItem, index?: number, event?: MouseEvent) => void; select: (items: SelectableItem[], value: boolean) => void; selectAll: (value: boolean) => void; isSelected: (items: SelectableItem | SelectableItem[]) => boolean; isSomeSelected: (items: SelectableItem | SelectableItem[]) => boolean; someSelected: vue.ComputedRef; allSelected: vue.ComputedRef; showSelectAll: Readonly>; lastSelectedIndex: vue.ShallowRef; selectStrategy: vue.ComputedRef; }; type DataTableCompareFunction = (a: T, b: T) => number | null; type DataTableHeader> = { key?: 'data-table-group' | 'data-table-select' | 'data-table-expand' | (string & {}); value?: SelectItemKey; title?: string; fixed?: boolean | 'start' | 'end'; align?: 'start' | 'end' | 'center'; width?: number | string; minWidth?: number | string; maxWidth?: number | string; nowrap?: boolean; indent?: number; headerProps?: Record; cellProps?: HeaderCellProps; sortable?: boolean; sort?: DataTableCompareFunction; sortRaw?: DataTableCompareFunction; filter?: FilterFunction; children?: DataTableHeader[]; }; type InternalDataTableHeader = Omit & { key: string | null; value: SelectItemKey | null; sortable: boolean; fixedOffset?: number; fixedEndOffset?: number; lastFixed?: boolean; firstFixedEnd?: boolean; nowrap?: boolean; colspan?: number; rowspan?: number; children?: InternalDataTableHeader[]; }; interface DataTableItem extends Omit, 'type'>, GroupableItem, SelectableItem { key: any; index: number; virtualIndex?: number; columns: { [key: string]: any; }; } type ItemSlotBase = { index: number; item: T; internalItem: DataTableItem; isExpanded: ReturnType['isExpanded']; toggleExpand: ReturnType['toggleExpand']; isSelected: ReturnType['isSelected']; toggleSelect: ReturnType['toggleSelect']; }; type ItemKeySlot = ItemSlotBase & { value: any; column: InternalDataTableHeader; }; type RowPropsFunction = (data: Pick, 'index' | 'item' | 'internalItem'>) => Record; type CellPropsFunction = (data: Pick, 'index' | 'item' | 'internalItem' | 'value' | 'column'>) => Record; type HeaderCellProps = Record | HeaderCellPropsFunction; type HeaderCellPropsFunction = (data: Pick, 'index' | 'item' | 'internalItem' | 'value'>) => Record; interface LocationStrategyData { contentEl: Ref; target: Ref; isActive: Ref; isRtl: Ref; } type LocationStrategyFunction = (data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref>) => undefined | { updateLocation: (e?: Event) => void; }; declare const locationStrategies: { static: typeof staticLocationStrategy; connected: typeof connectedLocationStrategy; }; interface StrategyProps$1 { locationStrategy: keyof typeof locationStrategies | LocationStrategyFunction; location: Anchor; origin: Anchor | 'auto' | 'overlap'; offset?: number | string | number[]; stickToTarget?: boolean; viewportMargin?: number | string; maxHeight?: number | string; maxWidth?: number | string; minHeight?: number | string; minWidth?: number | string; } declare function staticLocationStrategy(): void; declare function connectedLocationStrategy(data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref>): { updateLocation: () => { available: { x: number; y: number; }; contentBox: Box; flipped: { x: boolean; y: boolean; }; } | undefined; }; interface ScrollStrategyData { root: Ref; contentEl: Ref; targetEl: Ref; target: Ref; isActive: Ref; updateLocation: Ref<((e: Event) => void) | undefined>; } type ScrollStrategyFunction = (data: ScrollStrategyData, props: StrategyProps, scope: EffectScope) => void; declare const scrollStrategies: { none: null; close: typeof closeScrollStrategy; block: typeof blockScrollStrategy; reposition: typeof repositionScrollStrategy; }; interface StrategyProps { scrollStrategy: keyof typeof scrollStrategies | ScrollStrategyFunction; contained: boolean | undefined; } declare function closeScrollStrategy(data: ScrollStrategyData): void; declare function blockScrollStrategy(data: ScrollStrategyData, props: StrategyProps): void; declare function repositionScrollStrategy(data: ScrollStrategyData, props: StrategyProps, scope: EffectScope): void; type ClassValue = any; declare const allowedVariants: readonly ['elevated', 'flat', 'tonal', 'outlined', 'text', 'plain']; type Variant = (typeof allowedVariants)[number]; declare const VSnackbar: { new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{ style: string | false | vue.StyleValue[] | vue.CSSProperties | null; locationStrategy: "connected" | "static" | LocationStrategyFunction; location: Anchor; origin: "auto" | "overlap" | Anchor; tile: boolean; variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal"; transition: string | boolean | (vue.TransitionProps & { component?: vue.Component; }) | null; activatorProps: Record; openOnHover: boolean; closeOnContentClick: boolean; eager: boolean; absolute: boolean; closeOnBack: boolean; contained: boolean; disabled: boolean; modelValue: boolean; zIndex: string | number; loading: boolean; reverseTimer: boolean; timer: "bottom" | "top" | boolean; timeout: string | number; vertical: boolean; } & { theme?: string | undefined; class?: any; rounded?: string | number | boolean | undefined; color?: string | undefined; height?: string | number | undefined; maxHeight?: string | number | undefined; maxWidth?: string | number | undefined; minHeight?: string | number | undefined; minWidth?: string | number | undefined; width?: string | number | undefined; position?: "absolute" | "fixed" | "relative" | "static" | "sticky" | undefined; closeDelay?: string | number | undefined; openDelay?: string | number | undefined; target?: "cursor" | "parent" | Element | [x: number, y: number] | vue.ComponentPublicInstance | (string & {}) | undefined; activator?: "parent" | Element | vue.ComponentPublicInstance | (string & {}) | undefined; openOnClick?: boolean | undefined; openOnFocus?: boolean | undefined; attach?: string | boolean | Element | undefined; contentClass?: any; contentProps?: any; opacity?: string | number | undefined; collapsed?: { width: number; height: number; } | undefined; prependAvatar?: string | undefined; prependIcon?: IconValue | undefined; queueGap?: number | undefined; queueIndex?: number | undefined; title?: string | undefined; text?: string | undefined; timerColor?: string | undefined; } & { $children?: { activator?: ((arg: { isActive: boolean; props: Record; }) => vue.VNodeChild) | undefined; default?: (() => vue.VNodeChild) | undefined; prepend?: (() => vue.VNodeChild) | undefined; actions?: ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; header?: (() => vue.VNodeChild) | undefined; title?: (() => vue.VNodeChild) | undefined; text?: (() => vue.VNodeChild) | undefined; } | { $stable?: boolean; } | (() => vue.VNodeChild) | vue.VNodeChild; 'v-slots'?: { activator?: false | ((arg: { isActive: boolean; props: Record; }) => vue.VNodeChild) | undefined; default?: false | (() => vue.VNodeChild) | undefined; prepend?: false | (() => vue.VNodeChild) | undefined; actions?: false | ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; header?: false | (() => vue.VNodeChild) | undefined; title?: false | (() => vue.VNodeChild) | undefined; text?: false | (() => vue.VNodeChild) | undefined; } | undefined; } & { "v-slot:actions"?: false | ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; "v-slot:activator"?: false | ((arg: { isActive: boolean; props: Record; }) => vue.VNodeChild) | undefined; "v-slot:default"?: false | (() => vue.VNodeChild) | undefined; "v-slot:header"?: false | (() => vue.VNodeChild) | undefined; "v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined; "v-slot:text"?: false | (() => vue.VNodeChild) | undefined; "v-slot:title"?: false | (() => vue.VNodeChild) | undefined; } & { "onUpdate:modelValue"?: ((v: boolean) => any) | undefined; }, Omit; openOnClick: boolean; openOnHover: boolean; openOnFocus: boolean; closeOnContentClick: boolean; retainFocus: boolean; captureFocus: boolean; eager: boolean; absolute: boolean; closeOnBack: boolean; contained: boolean; disabled: boolean; noClickAnimation: boolean; modelValue: boolean; persistent: boolean; scrim: string | boolean; zIndex: string | number; _disableGlobalStack: boolean; }> & Omit<{ theme?: string | undefined; class?: any; style: string | false | vue.StyleValue[] | vue.CSSProperties | null; $children?: { default?: ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; activator?: ((arg: { isActive: boolean; props: Record; targetRef: TemplateRef; }) => vue.VNodeChild) | undefined; } | { $stable?: boolean; } | ((arg: { isActive: Ref; }) => vue.VNodeChild) | vue.VNodeChild; 'v-slots'?: { default?: false | ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; activator?: false | ((arg: { isActive: boolean; props: Record; targetRef: TemplateRef; }) => vue.VNodeChild) | undefined; } | undefined; locationStrategy: "connected" | "static" | LocationStrategyFunction; location: Anchor; origin: "auto" | "overlap" | Anchor; offset?: string | number | number[] | undefined; stickToTarget: boolean; viewportMargin: string | number; scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction; height?: string | number | undefined; maxHeight?: string | number | undefined; maxWidth?: string | number | undefined; minHeight?: string | number | undefined; minWidth?: string | number | undefined; width?: string | number | undefined; transition?: string | boolean | (vue.TransitionProps & { component?: vue.Component; }) | null | undefined; closeDelay?: string | number | undefined; openDelay?: string | number | undefined; target?: "cursor" | "parent" | Element | [x: number, y: number] | vue.ComponentPublicInstance | (string & {}) | undefined; activator?: "parent" | Element | vue.ComponentPublicInstance | (string & {}) | undefined; activatorProps: Record; openOnClick?: boolean | undefined; openOnHover: boolean; openOnFocus?: boolean | undefined; closeOnContentClick: boolean; retainFocus: boolean; captureFocus: boolean; eager: boolean; absolute: boolean; attach?: string | boolean | Element | undefined; closeOnBack: boolean; contained: boolean; contentClass?: any; contentProps?: any; disabled: boolean; opacity?: string | number | undefined; noClickAnimation: boolean; modelValue: boolean; persistent: boolean; scrim: string | boolean; zIndex: string | number; _disableGlobalStack: boolean; onAfterEnter?: (() => any) | undefined; onAfterLeave?: (() => any) | undefined; "onClick:outside"?: ((e: MouseEvent) => any) | undefined; onKeydown?: ((e: KeyboardEvent) => any) | undefined; "onUpdate:modelValue"?: ((value: boolean) => any) | undefined; "v-slot:activator"?: false | ((arg: { isActive: boolean; props: Record; targetRef: TemplateRef; }) => vue.VNodeChild) | undefined; "v-slot:default"?: false | ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "_disableGlobalStack" | "absolute" | "activatorProps" | "captureFocus" | "closeOnBack" | "closeOnContentClick" | "contained" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "retainFocus" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "viewportMargin" | "zIndex">; $attrs: { [x: string]: unknown; }; $refs: { [x: string]: unknown; }; $slots: Readonly<{ default?: ((arg: { isActive: Ref; }) => vue.VNode[]) | undefined; activator?: ((arg: { isActive: boolean; props: Record; targetRef: TemplateRef; }) => vue.VNode[]) | undefined; }>; $root: vue.ComponentPublicInstance | null; $parent: vue.ComponentPublicInstance | null; $host: Element | null; $emit: ((event: "afterEnter") => void) & ((event: "afterLeave") => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void); $el: any; $options: vue.ComponentOptionsBase<{ style: string | false | vue.StyleValue[] | vue.CSSProperties | null; locationStrategy: "connected" | "static" | LocationStrategyFunction; location: Anchor; origin: "auto" | "overlap" | Anchor; stickToTarget: boolean; viewportMargin: string | number; scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction; activatorProps: Record; openOnHover: boolean; closeOnContentClick: boolean; retainFocus: boolean; captureFocus: boolean; eager: boolean; absolute: boolean; closeOnBack: boolean; contained: boolean; disabled: boolean; noClickAnimation: boolean; modelValue: boolean; persistent: boolean; scrim: string | boolean; zIndex: string | number; _disableGlobalStack: boolean; } & { theme?: string | undefined; class?: any; offset?: string | number | number[] | undefined; height?: string | number | undefined; maxHeight?: string | number | undefined; maxWidth?: string | number | undefined; minHeight?: string | number | undefined; minWidth?: string | number | undefined; width?: string | number | undefined; transition?: string | boolean | (vue.TransitionProps & { component?: vue.Component; }) | null | undefined; closeDelay?: string | number | undefined; openDelay?: string | number | undefined; target?: "cursor" | "parent" | Element | [x: number, y: number] | vue.ComponentPublicInstance | (string & {}) | undefined; activator?: "parent" | Element | vue.ComponentPublicInstance | (string & {}) | undefined; openOnClick?: boolean | undefined; openOnFocus?: boolean | undefined; attach?: string | boolean | Element | undefined; contentClass?: any; contentProps?: any; opacity?: string | number | undefined; } & { $children?: { default?: ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; activator?: ((arg: { isActive: boolean; props: Record; targetRef: TemplateRef; }) => vue.VNodeChild) | undefined; } | { $stable?: boolean; } | ((arg: { isActive: Ref; }) => vue.VNodeChild) | vue.VNodeChild; 'v-slots'?: { default?: false | ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; activator?: false | ((arg: { isActive: boolean; props: Record; targetRef: TemplateRef; }) => vue.VNodeChild) | undefined; } | undefined; } & { "v-slot:activator"?: false | ((arg: { isActive: boolean; props: Record; targetRef: TemplateRef; }) => vue.VNodeChild) | undefined; "v-slot:default"?: false | ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; } & { onAfterEnter?: (() => any) | undefined; onAfterLeave?: (() => any) | undefined; "onClick:outside"?: ((e: MouseEvent) => any) | undefined; onKeydown?: ((e: KeyboardEvent) => any) | undefined; "onUpdate:modelValue"?: ((value: boolean) => any) | undefined; }, { activatorEl: Ref; scrimEl: Ref; target: vue.ComputedRef; animateClick: () => void; contentEl: Ref; rootEl: Ref; globalTop: Readonly>; localTop: Readonly>; updateLocation: Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>; }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, { 'click:outside': (e: MouseEvent) => true; 'update:modelValue': (value: boolean) => true; keydown: (e: KeyboardEvent) => true; afterEnter: () => true; afterLeave: () => true; }, string, { style: vue.StyleValue; locationStrategy: "connected" | "static" | LocationStrategyFunction; location: Anchor; origin: "auto" | "overlap" | Anchor; stickToTarget: boolean; viewportMargin: string | number; scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction; activatorProps: Record; openOnClick: boolean; openOnHover: boolean; openOnFocus: boolean; closeOnContentClick: boolean; retainFocus: boolean; captureFocus: boolean; eager: boolean; absolute: boolean; closeOnBack: boolean; contained: boolean; disabled: boolean; noClickAnimation: boolean; modelValue: boolean; persistent: boolean; scrim: string | boolean; zIndex: string | number; _disableGlobalStack: boolean; }, {}, string, vue.SlotsType; }) => vue.VNode[]; activator: (arg: { isActive: boolean; props: Record; targetRef: TemplateRef; }) => vue.VNode[]; }>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & { beforeCreate?: (() => void)[] | (() => void); created?: (() => void)[] | (() => void); beforeMount?: (() => void)[] | (() => void); mounted?: (() => void)[] | (() => void); beforeUpdate?: (() => void)[] | (() => void); updated?: (() => void)[] | (() => void); activated?: (() => void)[] | (() => void); deactivated?: (() => void)[] | (() => void); beforeDestroy?: (() => void)[] | (() => void); beforeUnmount?: (() => void)[] | (() => void); destroyed?: (() => void)[] | (() => void); unmounted?: (() => void)[] | (() => void); renderTracked?: ((e: vue.DebuggerEvent) => void)[] | ((e: vue.DebuggerEvent) => void); renderTriggered?: ((e: vue.DebuggerEvent) => void)[] | ((e: vue.DebuggerEvent) => void); errorCaptured?: ((err: unknown, instance: vue.ComponentPublicInstance | null, info: string) => boolean | void)[] | ((err: unknown, instance: vue.ComponentPublicInstance | null, info: string) => boolean | void); }; $forceUpdate: () => void; $nextTick: typeof nextTick; $watch any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, _vue_reactivity.OnCleanup]) => any : (...args: [any, any, _vue_reactivity.OnCleanup]) => any, options?: vue.WatchOptions): vue.WatchStopHandle; } & Readonly<{ style: vue.StyleValue; locationStrategy: "connected" | "static" | LocationStrategyFunction; location: Anchor; origin: "auto" | "overlap" | Anchor; stickToTarget: boolean; viewportMargin: string | number; scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction; activatorProps: Record; openOnClick: boolean; openOnHover: boolean; openOnFocus: boolean; closeOnContentClick: boolean; retainFocus: boolean; captureFocus: boolean; eager: boolean; absolute: boolean; closeOnBack: boolean; contained: boolean; disabled: boolean; noClickAnimation: boolean; modelValue: boolean; persistent: boolean; scrim: string | boolean; zIndex: string | number; _disableGlobalStack: boolean; }> & Omit<{ style: string | false | vue.StyleValue[] | vue.CSSProperties | null; locationStrategy: "connected" | "static" | LocationStrategyFunction; location: Anchor; origin: "auto" | "overlap" | Anchor; stickToTarget: boolean; viewportMargin: string | number; scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction; activatorProps: Record; openOnHover: boolean; closeOnContentClick: boolean; retainFocus: boolean; captureFocus: boolean; eager: boolean; absolute: boolean; closeOnBack: boolean; contained: boolean; disabled: boolean; noClickAnimation: boolean; modelValue: boolean; persistent: boolean; scrim: string | boolean; zIndex: string | number; _disableGlobalStack: boolean; } & { theme?: string | undefined; class?: any; offset?: string | number | number[] | undefined; height?: string | number | undefined; maxHeight?: string | number | undefined; maxWidth?: string | number | undefined; minHeight?: string | number | undefined; minWidth?: string | number | undefined; width?: string | number | undefined; transition?: string | boolean | (vue.TransitionProps & { component?: vue.Component; }) | null | undefined; closeDelay?: string | number | undefined; openDelay?: string | number | undefined; target?: "cursor" | "parent" | Element | [x: number, y: number] | vue.ComponentPublicInstance | (string & {}) | undefined; activator?: "parent" | Element | vue.ComponentPublicInstance | (string & {}) | undefined; openOnClick?: boolean | undefined; openOnFocus?: boolean | undefined; attach?: string | boolean | Element | undefined; contentClass?: any; contentProps?: any; opacity?: string | number | undefined; } & { $children?: { default?: ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; activator?: ((arg: { isActive: boolean; props: Record; targetRef: TemplateRef; }) => vue.VNodeChild) | undefined; } | { $stable?: boolean; } | ((arg: { isActive: Ref; }) => vue.VNodeChild) | vue.VNodeChild; 'v-slots'?: { default?: false | ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; activator?: false | ((arg: { isActive: boolean; props: Record; targetRef: TemplateRef; }) => vue.VNodeChild) | undefined; } | undefined; } & { "v-slot:activator"?: false | ((arg: { isActive: boolean; props: Record; targetRef: TemplateRef; }) => vue.VNodeChild) | undefined; "v-slot:default"?: false | ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; } & { onAfterEnter?: (() => any) | undefined; onAfterLeave?: (() => any) | undefined; "onClick:outside"?: ((e: MouseEvent) => any) | undefined; onKeydown?: ((e: KeyboardEvent) => any) | undefined; "onUpdate:modelValue"?: ((value: boolean) => any) | undefined; }, "activatorEl" | "animateClick" | "contentEl" | "globalTop" | "localTop" | "rootEl" | "scrimEl" | "target" | "updateLocation" | ("_disableGlobalStack" | "absolute" | "activatorProps" | "captureFocus" | "closeOnBack" | "closeOnContentClick" | "contained" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "retainFocus" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "viewportMargin" | "zIndex")> & vue.ShallowUnwrapRef<{ activatorEl: Ref; scrimEl: Ref; target: vue.ComputedRef; animateClick: () => void; contentEl: Ref; rootEl: Ref; globalTop: Readonly>; localTop: Readonly>; updateLocation: Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>; }> & {} & vue.ComponentCustomProperties & {}, "$children" | "activator" | "attach" | "class" | "closeDelay" | "contentClass" | "contentProps" | "height" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "offset" | "onAfterEnter" | "onAfterLeave" | "onClick:outside" | "onKeydown" | "onUpdate:modelValue" | "opacity" | "openDelay" | "target" | "theme" | "transition" | "v-slot:activator" | "v-slot:default" | "v-slots" | "width" | ("_disableGlobalStack" | "absolute" | "activatorProps" | "captureFocus" | "closeOnBack" | "closeOnContentClick" | "contained" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "retainFocus" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "viewportMargin" | "zIndex") | keyof vue.VNodeProps>, `$${any}`> & { _allExposed: { activatorEl: Ref; scrimEl: Ref; target: vue.ComputedRef; animateClick: () => void; contentEl: Ref; rootEl: Ref; globalTop: Readonly>; localTop: Readonly>; updateLocation: Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>; } | {}; }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, { 'update:modelValue': (v: boolean) => true; }, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, { style: vue.StyleValue; locationStrategy: "connected" | "static" | LocationStrategyFunction; location: Anchor; origin: "auto" | "overlap" | Anchor; rounded: string | number | boolean; tile: boolean; variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal"; transition: string | boolean | (vue.TransitionProps & { component?: vue.Component; }) | null; activatorProps: Record; openOnClick: boolean; openOnHover: boolean; openOnFocus: boolean; closeOnContentClick: boolean; eager: boolean; absolute: boolean; closeOnBack: boolean; contained: boolean; disabled: boolean; modelValue: boolean; zIndex: string | number; loading: boolean; reverseTimer: boolean; timer: "bottom" | "top" | boolean; timeout: string | number; vertical: boolean; }, true, {}, vue.SlotsType; }) => vue.VNode[]; default: () => vue.VNode[]; prepend: () => vue.VNode[]; actions: (arg: { isActive: Ref; }) => vue.VNode[]; header: () => vue.VNode[]; title: () => vue.VNode[]; text: () => vue.VNode[]; }>>, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, { style: string | false | vue.StyleValue[] | vue.CSSProperties | null; locationStrategy: "connected" | "static" | LocationStrategyFunction; location: Anchor; origin: "auto" | "overlap" | Anchor; tile: boolean; variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal"; transition: string | boolean | (vue.TransitionProps & { component?: vue.Component; }) | null; activatorProps: Record; openOnHover: boolean; closeOnContentClick: boolean; eager: boolean; absolute: boolean; closeOnBack: boolean; contained: boolean; disabled: boolean; modelValue: boolean; zIndex: string | number; loading: boolean; reverseTimer: boolean; timer: "bottom" | "top" | boolean; timeout: string | number; vertical: boolean; } & { theme?: string | undefined; class?: any; rounded?: string | number | boolean | undefined; color?: string | undefined; height?: string | number | undefined; maxHeight?: string | number | undefined; maxWidth?: string | number | undefined; minHeight?: string | number | undefined; minWidth?: string | number | undefined; width?: string | number | undefined; position?: "absolute" | "fixed" | "relative" | "static" | "sticky" | undefined; closeDelay?: string | number | undefined; openDelay?: string | number | undefined; target?: "cursor" | "parent" | Element | [x: number, y: number] | vue.ComponentPublicInstance | (string & {}) | undefined; activator?: "parent" | Element | vue.ComponentPublicInstance | (string & {}) | undefined; openOnClick?: boolean | undefined; openOnFocus?: boolean | undefined; attach?: string | boolean | Element | undefined; contentClass?: any; contentProps?: any; opacity?: string | number | undefined; collapsed?: { width: number; height: number; } | undefined; prependAvatar?: string | undefined; prependIcon?: IconValue | undefined; queueGap?: number | undefined; queueIndex?: number | undefined; title?: string | undefined; text?: string | undefined; timerColor?: string | undefined; } & { $children?: { activator?: ((arg: { isActive: boolean; props: Record; }) => vue.VNodeChild) | undefined; default?: (() => vue.VNodeChild) | undefined; prepend?: (() => vue.VNodeChild) | undefined; actions?: ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; header?: (() => vue.VNodeChild) | undefined; title?: (() => vue.VNodeChild) | undefined; text?: (() => vue.VNodeChild) | undefined; } | { $stable?: boolean; } | (() => vue.VNodeChild) | vue.VNodeChild; 'v-slots'?: { activator?: false | ((arg: { isActive: boolean; props: Record; }) => vue.VNodeChild) | undefined; default?: false | (() => vue.VNodeChild) | undefined; prepend?: false | (() => vue.VNodeChild) | undefined; actions?: false | ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; header?: false | (() => vue.VNodeChild) | undefined; title?: false | (() => vue.VNodeChild) | undefined; text?: false | (() => vue.VNodeChild) | undefined; } | undefined; } & { "v-slot:actions"?: false | ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; "v-slot:activator"?: false | ((arg: { isActive: boolean; props: Record; }) => vue.VNodeChild) | undefined; "v-slot:default"?: false | (() => vue.VNodeChild) | undefined; "v-slot:header"?: false | (() => vue.VNodeChild) | undefined; "v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined; "v-slot:text"?: false | (() => vue.VNodeChild) | undefined; "v-slot:title"?: false | (() => vue.VNodeChild) | undefined; } & { "onUpdate:modelValue"?: ((v: boolean) => any) | undefined; }, Omit; openOnClick: boolean; openOnHover: boolean; openOnFocus: boolean; closeOnContentClick: boolean; retainFocus: boolean; captureFocus: boolean; eager: boolean; absolute: boolean; closeOnBack: boolean; contained: boolean; disabled: boolean; noClickAnimation: boolean; modelValue: boolean; persistent: boolean; scrim: string | boolean; zIndex: string | number; _disableGlobalStack: boolean; }> & Omit<{ theme?: string | undefined; class?: any; style: string | false | vue.StyleValue[] | vue.CSSProperties | null; $children?: { default?: ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; activator?: ((arg: { isActive: boolean; props: Record; targetRef: TemplateRef; }) => vue.VNodeChild) | undefined; } | { $stable?: boolean; } | ((arg: { isActive: Ref; }) => vue.VNodeChild) | vue.VNodeChild; 'v-slots'?: { default?: false | ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; activator?: false | ((arg: { isActive: boolean; props: Record; targetRef: TemplateRef; }) => vue.VNodeChild) | undefined; } | undefined; locationStrategy: "connected" | "static" | LocationStrategyFunction; location: Anchor; origin: "auto" | "overlap" | Anchor; offset?: string | number | number[] | undefined; stickToTarget: boolean; viewportMargin: string | number; scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction; height?: string | number | undefined; maxHeight?: string | number | undefined; maxWidth?: string | number | undefined; minHeight?: string | number | undefined; minWidth?: string | number | undefined; width?: string | number | undefined; transition?: string | boolean | (vue.TransitionProps & { component?: vue.Component; }) | null | undefined; closeDelay?: string | number | undefined; openDelay?: string | number | undefined; target?: "cursor" | "parent" | Element | [x: number, y: number] | vue.ComponentPublicInstance | (string & {}) | undefined; activator?: "parent" | Element | vue.ComponentPublicInstance | (string & {}) | undefined; activatorProps: Record; openOnClick?: boolean | undefined; openOnHover: boolean; openOnFocus?: boolean | undefined; closeOnContentClick: boolean; retainFocus: boolean; captureFocus: boolean; eager: boolean; absolute: boolean; attach?: string | boolean | Element | undefined; closeOnBack: boolean; contained: boolean; contentClass?: any; contentProps?: any; disabled: boolean; opacity?: string | number | undefined; noClickAnimation: boolean; modelValue: boolean; persistent: boolean; scrim: string | boolean; zIndex: string | number; _disableGlobalStack: boolean; onAfterEnter?: (() => any) | undefined; onAfterLeave?: (() => any) | undefined; "onClick:outside"?: ((e: MouseEvent) => any) | undefined; onKeydown?: ((e: KeyboardEvent) => any) | undefined; "onUpdate:modelValue"?: ((value: boolean) => any) | undefined; "v-slot:activator"?: false | ((arg: { isActive: boolean; props: Record; targetRef: TemplateRef; }) => vue.VNodeChild) | undefined; "v-slot:default"?: false | ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "_disableGlobalStack" | "absolute" | "activatorProps" | "captureFocus" | "closeOnBack" | "closeOnContentClick" | "contained" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "retainFocus" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "viewportMargin" | "zIndex">; $attrs: { [x: string]: unknown; }; $refs: { [x: string]: unknown; }; $slots: Readonly<{ default?: ((arg: { isActive: Ref; }) => vue.VNode[]) | undefined; activator?: ((arg: { isActive: boolean; props: Record; targetRef: TemplateRef; }) => vue.VNode[]) | undefined; }>; $root: vue.ComponentPublicInstance | null; $parent: vue.ComponentPublicInstance | null; $host: Element | null; $emit: ((event: "afterEnter") => void) & ((event: "afterLeave") => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void); $el: any; $options: vue.ComponentOptionsBase<{ style: string | false | vue.StyleValue[] | vue.CSSProperties | null; locationStrategy: "connected" | "static" | LocationStrategyFunction; location: Anchor; origin: "auto" | "overlap" | Anchor; stickToTarget: boolean; viewportMargin: string | number; scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction; activatorProps: Record; openOnHover: boolean; closeOnContentClick: boolean; retainFocus: boolean; captureFocus: boolean; eager: boolean; absolute: boolean; closeOnBack: boolean; contained: boolean; disabled: boolean; noClickAnimation: boolean; modelValue: boolean; persistent: boolean; scrim: string | boolean; zIndex: string | number; _disableGlobalStack: boolean; } & { theme?: string | undefined; class?: any; offset?: string | number | number[] | undefined; height?: string | number | undefined; maxHeight?: string | number | undefined; maxWidth?: string | number | undefined; minHeight?: string | number | undefined; minWidth?: string | number | undefined; width?: string | number | undefined; transition?: string | boolean | (vue.TransitionProps & { component?: vue.Component; }) | null | undefined; closeDelay?: string | number | undefined; openDelay?: string | number | undefined; target?: "cursor" | "parent" | Element | [x: number, y: number] | vue.ComponentPublicInstance | (string & {}) | undefined; activator?: "parent" | Element | vue.ComponentPublicInstance | (string & {}) | undefined; openOnClick?: boolean | undefined; openOnFocus?: boolean | undefined; attach?: string | boolean | Element | undefined; contentClass?: any; contentProps?: any; opacity?: string | number | undefined; } & { $children?: { default?: ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; activator?: ((arg: { isActive: boolean; props: Record; targetRef: TemplateRef; }) => vue.VNodeChild) | undefined; } | { $stable?: boolean; } | ((arg: { isActive: Ref; }) => vue.VNodeChild) | vue.VNodeChild; 'v-slots'?: { default?: false | ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; activator?: false | ((arg: { isActive: boolean; props: Record; targetRef: TemplateRef; }) => vue.VNodeChild) | undefined; } | undefined; } & { "v-slot:activator"?: false | ((arg: { isActive: boolean; props: Record; targetRef: TemplateRef; }) => vue.VNodeChild) | undefined; "v-slot:default"?: false | ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; } & { onAfterEnter?: (() => any) | undefined; onAfterLeave?: (() => any) | undefined; "onClick:outside"?: ((e: MouseEvent) => any) | undefined; onKeydown?: ((e: KeyboardEvent) => any) | undefined; "onUpdate:modelValue"?: ((value: boolean) => any) | undefined; }, { activatorEl: Ref; scrimEl: Ref; target: vue.ComputedRef; animateClick: () => void; contentEl: Ref; rootEl: Ref; globalTop: Readonly>; localTop: Readonly>; updateLocation: Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>; }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, { 'click:outside': (e: MouseEvent) => true; 'update:modelValue': (value: boolean) => true; keydown: (e: KeyboardEvent) => true; afterEnter: () => true; afterLeave: () => true; }, string, { style: vue.StyleValue; locationStrategy: "connected" | "static" | LocationStrategyFunction; location: Anchor; origin: "auto" | "overlap" | Anchor; stickToTarget: boolean; viewportMargin: string | number; scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction; activatorProps: Record; openOnClick: boolean; openOnHover: boolean; openOnFocus: boolean; closeOnContentClick: boolean; retainFocus: boolean; captureFocus: boolean; eager: boolean; absolute: boolean; closeOnBack: boolean; contained: boolean; disabled: boolean; noClickAnimation: boolean; modelValue: boolean; persistent: boolean; scrim: string | boolean; zIndex: string | number; _disableGlobalStack: boolean; }, {}, string, vue.SlotsType; }) => vue.VNode[]; activator: (arg: { isActive: boolean; props: Record; targetRef: TemplateRef; }) => vue.VNode[]; }>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & { beforeCreate?: (() => void)[] | (() => void); created?: (() => void)[] | (() => void); beforeMount?: (() => void)[] | (() => void); mounted?: (() => void)[] | (() => void); beforeUpdate?: (() => void)[] | (() => void); updated?: (() => void)[] | (() => void); activated?: (() => void)[] | (() => void); deactivated?: (() => void)[] | (() => void); beforeDestroy?: (() => void)[] | (() => void); beforeUnmount?: (() => void)[] | (() => void); destroyed?: (() => void)[] | (() => void); unmounted?: (() => void)[] | (() => void); renderTracked?: ((e: vue.DebuggerEvent) => void)[] | ((e: vue.DebuggerEvent) => void); renderTriggered?: ((e: vue.DebuggerEvent) => void)[] | ((e: vue.DebuggerEvent) => void); errorCaptured?: ((err: unknown, instance: vue.ComponentPublicInstance | null, info: string) => boolean | void)[] | ((err: unknown, instance: vue.ComponentPublicInstance | null, info: string) => boolean | void); }; $forceUpdate: () => void; $nextTick: typeof nextTick; $watch any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, _vue_reactivity.OnCleanup]) => any : (...args: [any, any, _vue_reactivity.OnCleanup]) => any, options?: vue.WatchOptions): vue.WatchStopHandle; } & Readonly<{ style: vue.StyleValue; locationStrategy: "connected" | "static" | LocationStrategyFunction; location: Anchor; origin: "auto" | "overlap" | Anchor; stickToTarget: boolean; viewportMargin: string | number; scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction; activatorProps: Record; openOnClick: boolean; openOnHover: boolean; openOnFocus: boolean; closeOnContentClick: boolean; retainFocus: boolean; captureFocus: boolean; eager: boolean; absolute: boolean; closeOnBack: boolean; contained: boolean; disabled: boolean; noClickAnimation: boolean; modelValue: boolean; persistent: boolean; scrim: string | boolean; zIndex: string | number; _disableGlobalStack: boolean; }> & Omit<{ style: string | false | vue.StyleValue[] | vue.CSSProperties | null; locationStrategy: "connected" | "static" | LocationStrategyFunction; location: Anchor; origin: "auto" | "overlap" | Anchor; stickToTarget: boolean; viewportMargin: string | number; scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction; activatorProps: Record; openOnHover: boolean; closeOnContentClick: boolean; retainFocus: boolean; captureFocus: boolean; eager: boolean; absolute: boolean; closeOnBack: boolean; contained: boolean; disabled: boolean; noClickAnimation: boolean; modelValue: boolean; persistent: boolean; scrim: string | boolean; zIndex: string | number; _disableGlobalStack: boolean; } & { theme?: string | undefined; class?: any; offset?: string | number | number[] | undefined; height?: string | number | undefined; maxHeight?: string | number | undefined; maxWidth?: string | number | undefined; minHeight?: string | number | undefined; minWidth?: string | number | undefined; width?: string | number | undefined; transition?: string | boolean | (vue.TransitionProps & { component?: vue.Component; }) | null | undefined; closeDelay?: string | number | undefined; openDelay?: string | number | undefined; target?: "cursor" | "parent" | Element | [x: number, y: number] | vue.ComponentPublicInstance | (string & {}) | undefined; activator?: "parent" | Element | vue.ComponentPublicInstance | (string & {}) | undefined; openOnClick?: boolean | undefined; openOnFocus?: boolean | undefined; attach?: string | boolean | Element | undefined; contentClass?: any; contentProps?: any; opacity?: string | number | undefined; } & { $children?: { default?: ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; activator?: ((arg: { isActive: boolean; props: Record; targetRef: TemplateRef; }) => vue.VNodeChild) | undefined; } | { $stable?: boolean; } | ((arg: { isActive: Ref; }) => vue.VNodeChild) | vue.VNodeChild; 'v-slots'?: { default?: false | ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; activator?: false | ((arg: { isActive: boolean; props: Record; targetRef: TemplateRef; }) => vue.VNodeChild) | undefined; } | undefined; } & { "v-slot:activator"?: false | ((arg: { isActive: boolean; props: Record; targetRef: TemplateRef; }) => vue.VNodeChild) | undefined; "v-slot:default"?: false | ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; } & { onAfterEnter?: (() => any) | undefined; onAfterLeave?: (() => any) | undefined; "onClick:outside"?: ((e: MouseEvent) => any) | undefined; onKeydown?: ((e: KeyboardEvent) => any) | undefined; "onUpdate:modelValue"?: ((value: boolean) => any) | undefined; }, "activatorEl" | "animateClick" | "contentEl" | "globalTop" | "localTop" | "rootEl" | "scrimEl" | "target" | "updateLocation" | ("_disableGlobalStack" | "absolute" | "activatorProps" | "captureFocus" | "closeOnBack" | "closeOnContentClick" | "contained" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "retainFocus" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "viewportMargin" | "zIndex")> & vue.ShallowUnwrapRef<{ activatorEl: Ref; scrimEl: Ref; target: vue.ComputedRef; animateClick: () => void; contentEl: Ref; rootEl: Ref; globalTop: Readonly>; localTop: Readonly>; updateLocation: Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>; }> & {} & vue.ComponentCustomProperties & {}, "$children" | "activator" | "attach" | "class" | "closeDelay" | "contentClass" | "contentProps" | "height" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "offset" | "onAfterEnter" | "onAfterLeave" | "onClick:outside" | "onKeydown" | "onUpdate:modelValue" | "opacity" | "openDelay" | "target" | "theme" | "transition" | "v-slot:activator" | "v-slot:default" | "v-slots" | "width" | ("_disableGlobalStack" | "absolute" | "activatorProps" | "captureFocus" | "closeOnBack" | "closeOnContentClick" | "contained" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "retainFocus" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "viewportMargin" | "zIndex") | keyof vue.VNodeProps>, `$${any}`> & { _allExposed: { activatorEl: Ref; scrimEl: Ref; target: vue.ComputedRef; animateClick: () => void; contentEl: Ref; rootEl: Ref; globalTop: Readonly>; localTop: Readonly>; updateLocation: Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>; } | {}; }, {}, {}, {}, { style: vue.StyleValue; locationStrategy: "connected" | "static" | LocationStrategyFunction; location: Anchor; origin: "auto" | "overlap" | Anchor; rounded: string | number | boolean; tile: boolean; variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal"; transition: string | boolean | (vue.TransitionProps & { component?: vue.Component; }) | null; activatorProps: Record; openOnClick: boolean; openOnHover: boolean; openOnFocus: boolean; closeOnContentClick: boolean; eager: boolean; absolute: boolean; closeOnBack: boolean; contained: boolean; disabled: boolean; modelValue: boolean; zIndex: string | number; loading: boolean; reverseTimer: boolean; timer: "bottom" | "top" | boolean; timeout: string | number; vertical: boolean; }>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & vue.ComponentOptionsBase<{ style: string | false | vue.StyleValue[] | vue.CSSProperties | null; locationStrategy: "connected" | "static" | LocationStrategyFunction; location: Anchor; origin: "auto" | "overlap" | Anchor; tile: boolean; variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal"; transition: string | boolean | (vue.TransitionProps & { component?: vue.Component; }) | null; activatorProps: Record; openOnHover: boolean; closeOnContentClick: boolean; eager: boolean; absolute: boolean; closeOnBack: boolean; contained: boolean; disabled: boolean; modelValue: boolean; zIndex: string | number; loading: boolean; reverseTimer: boolean; timer: "bottom" | "top" | boolean; timeout: string | number; vertical: boolean; } & { theme?: string | undefined; class?: any; rounded?: string | number | boolean | undefined; color?: string | undefined; height?: string | number | undefined; maxHeight?: string | number | undefined; maxWidth?: string | number | undefined; minHeight?: string | number | undefined; minWidth?: string | number | undefined; width?: string | number | undefined; position?: "absolute" | "fixed" | "relative" | "static" | "sticky" | undefined; closeDelay?: string | number | undefined; openDelay?: string | number | undefined; target?: "cursor" | "parent" | Element | [x: number, y: number] | vue.ComponentPublicInstance | (string & {}) | undefined; activator?: "parent" | Element | vue.ComponentPublicInstance | (string & {}) | undefined; openOnClick?: boolean | undefined; openOnFocus?: boolean | undefined; attach?: string | boolean | Element | undefined; contentClass?: any; contentProps?: any; opacity?: string | number | undefined; collapsed?: { width: number; height: number; } | undefined; prependAvatar?: string | undefined; prependIcon?: IconValue | undefined; queueGap?: number | undefined; queueIndex?: number | undefined; title?: string | undefined; text?: string | undefined; timerColor?: string | undefined; } & { $children?: { activator?: ((arg: { isActive: boolean; props: Record; }) => vue.VNodeChild) | undefined; default?: (() => vue.VNodeChild) | undefined; prepend?: (() => vue.VNodeChild) | undefined; actions?: ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; header?: (() => vue.VNodeChild) | undefined; title?: (() => vue.VNodeChild) | undefined; text?: (() => vue.VNodeChild) | undefined; } | { $stable?: boolean; } | (() => vue.VNodeChild) | vue.VNodeChild; 'v-slots'?: { activator?: false | ((arg: { isActive: boolean; props: Record; }) => vue.VNodeChild) | undefined; default?: false | (() => vue.VNodeChild) | undefined; prepend?: false | (() => vue.VNodeChild) | undefined; actions?: false | ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; header?: false | (() => vue.VNodeChild) | undefined; title?: false | (() => vue.VNodeChild) | undefined; text?: false | (() => vue.VNodeChild) | undefined; } | undefined; } & { "v-slot:actions"?: false | ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; "v-slot:activator"?: false | ((arg: { isActive: boolean; props: Record; }) => vue.VNodeChild) | undefined; "v-slot:default"?: false | (() => vue.VNodeChild) | undefined; "v-slot:header"?: false | (() => vue.VNodeChild) | undefined; "v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined; "v-slot:text"?: false | (() => vue.VNodeChild) | undefined; "v-slot:title"?: false | (() => vue.VNodeChild) | undefined; } & { "onUpdate:modelValue"?: ((v: boolean) => any) | undefined; }, Omit; openOnClick: boolean; openOnHover: boolean; openOnFocus: boolean; closeOnContentClick: boolean; retainFocus: boolean; captureFocus: boolean; eager: boolean; absolute: boolean; closeOnBack: boolean; contained: boolean; disabled: boolean; noClickAnimation: boolean; modelValue: boolean; persistent: boolean; scrim: string | boolean; zIndex: string | number; _disableGlobalStack: boolean; }> & Omit<{ theme?: string | undefined; class?: any; style: string | false | vue.StyleValue[] | vue.CSSProperties | null; $children?: { default?: ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; activator?: ((arg: { isActive: boolean; props: Record; targetRef: TemplateRef; }) => vue.VNodeChild) | undefined; } | { $stable?: boolean; } | ((arg: { isActive: Ref; }) => vue.VNodeChild) | vue.VNodeChild; 'v-slots'?: { default?: false | ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; activator?: false | ((arg: { isActive: boolean; props: Record; targetRef: TemplateRef; }) => vue.VNodeChild) | undefined; } | undefined; locationStrategy: "connected" | "static" | LocationStrategyFunction; location: Anchor; origin: "auto" | "overlap" | Anchor; offset?: string | number | number[] | undefined; stickToTarget: boolean; viewportMargin: string | number; scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction; height?: string | number | undefined; maxHeight?: string | number | undefined; maxWidth?: string | number | undefined; minHeight?: string | number | undefined; minWidth?: string | number | undefined; width?: string | number | undefined; transition?: string | boolean | (vue.TransitionProps & { component?: vue.Component; }) | null | undefined; closeDelay?: string | number | undefined; openDelay?: string | number | undefined; target?: "cursor" | "parent" | Element | [x: number, y: number] | vue.ComponentPublicInstance | (string & {}) | undefined; activator?: "parent" | Element | vue.ComponentPublicInstance | (string & {}) | undefined; activatorProps: Record; openOnClick?: boolean | undefined; openOnHover: boolean; openOnFocus?: boolean | undefined; closeOnContentClick: boolean; retainFocus: boolean; captureFocus: boolean; eager: boolean; absolute: boolean; attach?: string | boolean | Element | undefined; closeOnBack: boolean; contained: boolean; contentClass?: any; contentProps?: any; disabled: boolean; opacity?: string | number | undefined; noClickAnimation: boolean; modelValue: boolean; persistent: boolean; scrim: string | boolean; zIndex: string | number; _disableGlobalStack: boolean; onAfterEnter?: (() => any) | undefined; onAfterLeave?: (() => any) | undefined; "onClick:outside"?: ((e: MouseEvent) => any) | undefined; onKeydown?: ((e: KeyboardEvent) => any) | undefined; "onUpdate:modelValue"?: ((value: boolean) => any) | undefined; "v-slot:activator"?: false | ((arg: { isActive: boolean; props: Record; targetRef: TemplateRef; }) => vue.VNodeChild) | undefined; "v-slot:default"?: false | ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "_disableGlobalStack" | "absolute" | "activatorProps" | "captureFocus" | "closeOnBack" | "closeOnContentClick" | "contained" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "retainFocus" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "viewportMargin" | "zIndex">; $attrs: { [x: string]: unknown; }; $refs: { [x: string]: unknown; }; $slots: Readonly<{ default?: ((arg: { isActive: Ref; }) => vue.VNode[]) | undefined; activator?: ((arg: { isActive: boolean; props: Record; targetRef: TemplateRef; }) => vue.VNode[]) | undefined; }>; $root: vue.ComponentPublicInstance | null; $parent: vue.ComponentPublicInstance | null; $host: Element | null; $emit: ((event: "afterEnter") => void) & ((event: "afterLeave") => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "keydown", e: KeyboardEvent) => void) & ((event: "update:modelValue", value: boolean) => void); $el: any; $options: vue.ComponentOptionsBase<{ style: string | false | vue.StyleValue[] | vue.CSSProperties | null; locationStrategy: "connected" | "static" | LocationStrategyFunction; location: Anchor; origin: "auto" | "overlap" | Anchor; stickToTarget: boolean; viewportMargin: string | number; scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction; activatorProps: Record; openOnHover: boolean; closeOnContentClick: boolean; retainFocus: boolean; captureFocus: boolean; eager: boolean; absolute: boolean; closeOnBack: boolean; contained: boolean; disabled: boolean; noClickAnimation: boolean; modelValue: boolean; persistent: boolean; scrim: string | boolean; zIndex: string | number; _disableGlobalStack: boolean; } & { theme?: string | undefined; class?: any; offset?: string | number | number[] | undefined; height?: string | number | undefined; maxHeight?: string | number | undefined; maxWidth?: string | number | undefined; minHeight?: string | number | undefined; minWidth?: string | number | undefined; width?: string | number | undefined; transition?: string | boolean | (vue.TransitionProps & { component?: vue.Component; }) | null | undefined; closeDelay?: string | number | undefined; openDelay?: string | number | undefined; target?: "cursor" | "parent" | Element | [x: number, y: number] | vue.ComponentPublicInstance | (string & {}) | undefined; activator?: "parent" | Element | vue.ComponentPublicInstance | (string & {}) | undefined; openOnClick?: boolean | undefined; openOnFocus?: boolean | undefined; attach?: string | boolean | Element | undefined; contentClass?: any; contentProps?: any; opacity?: string | number | undefined; } & { $children?: { default?: ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; activator?: ((arg: { isActive: boolean; props: Record; targetRef: TemplateRef; }) => vue.VNodeChild) | undefined; } | { $stable?: boolean; } | ((arg: { isActive: Ref; }) => vue.VNodeChild) | vue.VNodeChild; 'v-slots'?: { default?: false | ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; activator?: false | ((arg: { isActive: boolean; props: Record; targetRef: TemplateRef; }) => vue.VNodeChild) | undefined; } | undefined; } & { "v-slot:activator"?: false | ((arg: { isActive: boolean; props: Record; targetRef: TemplateRef; }) => vue.VNodeChild) | undefined; "v-slot:default"?: false | ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; } & { onAfterEnter?: (() => any) | undefined; onAfterLeave?: (() => any) | undefined; "onClick:outside"?: ((e: MouseEvent) => any) | undefined; onKeydown?: ((e: KeyboardEvent) => any) | undefined; "onUpdate:modelValue"?: ((value: boolean) => any) | undefined; }, { activatorEl: Ref; scrimEl: Ref; target: vue.ComputedRef; animateClick: () => void; contentEl: Ref; rootEl: Ref; globalTop: Readonly>; localTop: Readonly>; updateLocation: Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>; }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, { 'click:outside': (e: MouseEvent) => true; 'update:modelValue': (value: boolean) => true; keydown: (e: KeyboardEvent) => true; afterEnter: () => true; afterLeave: () => true; }, string, { style: vue.StyleValue; locationStrategy: "connected" | "static" | LocationStrategyFunction; location: Anchor; origin: "auto" | "overlap" | Anchor; stickToTarget: boolean; viewportMargin: string | number; scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction; activatorProps: Record; openOnClick: boolean; openOnHover: boolean; openOnFocus: boolean; closeOnContentClick: boolean; retainFocus: boolean; captureFocus: boolean; eager: boolean; absolute: boolean; closeOnBack: boolean; contained: boolean; disabled: boolean; noClickAnimation: boolean; modelValue: boolean; persistent: boolean; scrim: string | boolean; zIndex: string | number; _disableGlobalStack: boolean; }, {}, string, vue.SlotsType; }) => vue.VNode[]; activator: (arg: { isActive: boolean; props: Record; targetRef: TemplateRef; }) => vue.VNode[]; }>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & { beforeCreate?: (() => void)[] | (() => void); created?: (() => void)[] | (() => void); beforeMount?: (() => void)[] | (() => void); mounted?: (() => void)[] | (() => void); beforeUpdate?: (() => void)[] | (() => void); updated?: (() => void)[] | (() => void); activated?: (() => void)[] | (() => void); deactivated?: (() => void)[] | (() => void); beforeDestroy?: (() => void)[] | (() => void); beforeUnmount?: (() => void)[] | (() => void); destroyed?: (() => void)[] | (() => void); unmounted?: (() => void)[] | (() => void); renderTracked?: ((e: vue.DebuggerEvent) => void)[] | ((e: vue.DebuggerEvent) => void); renderTriggered?: ((e: vue.DebuggerEvent) => void)[] | ((e: vue.DebuggerEvent) => void); errorCaptured?: ((err: unknown, instance: vue.ComponentPublicInstance | null, info: string) => boolean | void)[] | ((err: unknown, instance: vue.ComponentPublicInstance | null, info: string) => boolean | void); }; $forceUpdate: () => void; $nextTick: typeof nextTick; $watch any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, _vue_reactivity.OnCleanup]) => any : (...args: [any, any, _vue_reactivity.OnCleanup]) => any, options?: vue.WatchOptions): vue.WatchStopHandle; } & Readonly<{ style: vue.StyleValue; locationStrategy: "connected" | "static" | LocationStrategyFunction; location: Anchor; origin: "auto" | "overlap" | Anchor; stickToTarget: boolean; viewportMargin: string | number; scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction; activatorProps: Record; openOnClick: boolean; openOnHover: boolean; openOnFocus: boolean; closeOnContentClick: boolean; retainFocus: boolean; captureFocus: boolean; eager: boolean; absolute: boolean; closeOnBack: boolean; contained: boolean; disabled: boolean; noClickAnimation: boolean; modelValue: boolean; persistent: boolean; scrim: string | boolean; zIndex: string | number; _disableGlobalStack: boolean; }> & Omit<{ style: string | false | vue.StyleValue[] | vue.CSSProperties | null; locationStrategy: "connected" | "static" | LocationStrategyFunction; location: Anchor; origin: "auto" | "overlap" | Anchor; stickToTarget: boolean; viewportMargin: string | number; scrollStrategy: "block" | "close" | "none" | "reposition" | ScrollStrategyFunction; activatorProps: Record; openOnHover: boolean; closeOnContentClick: boolean; retainFocus: boolean; captureFocus: boolean; eager: boolean; absolute: boolean; closeOnBack: boolean; contained: boolean; disabled: boolean; noClickAnimation: boolean; modelValue: boolean; persistent: boolean; scrim: string | boolean; zIndex: string | number; _disableGlobalStack: boolean; } & { theme?: string | undefined; class?: any; offset?: string | number | number[] | undefined; height?: string | number | undefined; maxHeight?: string | number | undefined; maxWidth?: string | number | undefined; minHeight?: string | number | undefined; minWidth?: string | number | undefined; width?: string | number | undefined; transition?: string | boolean | (vue.TransitionProps & { component?: vue.Component; }) | null | undefined; closeDelay?: string | number | undefined; openDelay?: string | number | undefined; target?: "cursor" | "parent" | Element | [x: number, y: number] | vue.ComponentPublicInstance | (string & {}) | undefined; activator?: "parent" | Element | vue.ComponentPublicInstance | (string & {}) | undefined; openOnClick?: boolean | undefined; openOnFocus?: boolean | undefined; attach?: string | boolean | Element | undefined; contentClass?: any; contentProps?: any; opacity?: string | number | undefined; } & { $children?: { default?: ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; activator?: ((arg: { isActive: boolean; props: Record; targetRef: TemplateRef; }) => vue.VNodeChild) | undefined; } | { $stable?: boolean; } | ((arg: { isActive: Ref; }) => vue.VNodeChild) | vue.VNodeChild; 'v-slots'?: { default?: false | ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; activator?: false | ((arg: { isActive: boolean; props: Record; targetRef: TemplateRef; }) => vue.VNodeChild) | undefined; } | undefined; } & { "v-slot:activator"?: false | ((arg: { isActive: boolean; props: Record; targetRef: TemplateRef; }) => vue.VNodeChild) | undefined; "v-slot:default"?: false | ((arg: { isActive: Ref; }) => vue.VNodeChild) | undefined; } & { onAfterEnter?: (() => any) | undefined; onAfterLeave?: (() => any) | undefined; "onClick:outside"?: ((e: MouseEvent) => any) | undefined; onKeydown?: ((e: KeyboardEvent) => any) | undefined; "onUpdate:modelValue"?: ((value: boolean) => any) | undefined; }, "activatorEl" | "animateClick" | "contentEl" | "globalTop" | "localTop" | "rootEl" | "scrimEl" | "target" | "updateLocation" | ("_disableGlobalStack" | "absolute" | "activatorProps" | "captureFocus" | "closeOnBack" | "closeOnContentClick" | "contained" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "retainFocus" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "viewportMargin" | "zIndex")> & vue.ShallowUnwrapRef<{ activatorEl: Ref; scrimEl: Ref; target: vue.ComputedRef; animateClick: () => void; contentEl: Ref; rootEl: Ref; globalTop: Readonly>; localTop: Readonly>; updateLocation: Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>; }> & {} & vue.ComponentCustomProperties & {}, "$children" | "activator" | "attach" | "class" | "closeDelay" | "contentClass" | "contentProps" | "height" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "offset" | "onAfterEnter" | "onAfterLeave" | "onClick:outside" | "onKeydown" | "onUpdate:modelValue" | "opacity" | "openDelay" | "target" | "theme" | "transition" | "v-slot:activator" | "v-slot:default" | "v-slots" | "width" | ("_disableGlobalStack" | "absolute" | "activatorProps" | "captureFocus" | "closeOnBack" | "closeOnContentClick" | "contained" | "disabled" | "eager" | "location" | "locationStrategy" | "modelValue" | "noClickAnimation" | "openOnClick" | "openOnFocus" | "openOnHover" | "origin" | "persistent" | "retainFocus" | "scrim" | "scrollStrategy" | "stickToTarget" | "style" | "viewportMargin" | "zIndex") | keyof vue.VNodeProps>, `$${any}`> & { _allExposed: { activatorEl: Ref; scrimEl: Ref; target: vue.ComputedRef; animateClick: () => void; contentEl: Ref; rootEl: Ref; globalTop: Readonly>; localTop: Readonly>; updateLocation: Ref<((e: Event) => void) | undefined, ((e: Event) => void) | undefined>; } | {}; }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, { 'update:modelValue': (v: boolean) => true; }, string, { style: vue.StyleValue; locationStrategy: "connected" | "static" | LocationStrategyFunction; location: Anchor; origin: "auto" | "overlap" | Anchor; rounded: string | number | boolean; tile: boolean; variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal"; transition: string | boolean | (vue.TransitionProps & { component?: vue.Component; }) | null; activatorProps: Record; openOnClick: boolean; openOnHover: boolean; openOnFocus: boolean; closeOnContentClick: boolean; eager: boolean; absolute: boolean; closeOnBack: boolean; contained: boolean; disabled: boolean; modelValue: boolean; zIndex: string | number; loading: boolean; reverseTimer: boolean; timer: "bottom" | "top" | boolean; timeout: string | number; vertical: boolean; }, {}, string, vue.SlotsType; }) => vue.VNode[]; default: () => vue.VNode[]; prepend: () => vue.VNode[]; actions: (arg: { isActive: Ref; }) => vue.VNode[]; header: () => vue.VNode[]; title: () => vue.VNode[]; text: () => vue.VNode[]; }>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{ theme: StringConstructor; class: PropType; style: { type: PropType; default: null; }; locationStrategy: { type: PropType; default: string; validator: (val: any) => boolean; }; location: { type: PropType; default: string; }; origin: { type: PropType; default: string; }; rounded: { type: (BooleanConstructor | NumberConstructor | StringConstructor)[]; default: undefined; }; tile: BooleanConstructor; color: StringConstructor; variant: { type: PropType; default: string; validator: (v: any) => boolean; }; height: (NumberConstructor | StringConstructor)[]; maxHeight: (NumberConstructor | StringConstructor)[]; maxWidth: (NumberConstructor | StringConstructor)[]; minHeight: (NumberConstructor | StringConstructor)[]; minWidth: (NumberConstructor | StringConstructor)[]; width: (NumberConstructor | StringConstructor)[]; position: { type: PropType<"absolute" | "fixed" | "relative" | "static" | "sticky">; validator: (v: any) => boolean; }; transition: { type: PropType; default: NonNullable; }; closeDelay: (NumberConstructor | StringConstructor)[]; openDelay: (NumberConstructor | StringConstructor)[]; target: PropType<"cursor" | "parent" | Element | [x: number, y: number] | vue.ComponentPublicInstance | (string & {}) | undefined>; activator: PropType<"parent" | Element | vue.ComponentPublicInstance | (string & {}) | undefined>; activatorProps: { type: PropType>; default: () => {}; }; openOnClick: { type: BooleanConstructor; default: undefined; }; openOnHover: BooleanConstructor; openOnFocus: { type: BooleanConstructor; default: undefined; }; closeOnContentClick: BooleanConstructor; eager: BooleanConstructor; absolute: BooleanConstructor; attach: PropType; closeOnBack: Omit<{ type: BooleanConstructor; default: boolean; }, "default" | "type"> & { type: PropType; default: boolean; }; contained: BooleanConstructor; contentClass: null; contentProps: null; disabled: BooleanConstructor; opacity: (NumberConstructor | StringConstructor)[]; modelValue: BooleanConstructor; zIndex: { type: (NumberConstructor | StringConstructor)[]; default: number; }; collapsed: PropType<{ width: number; height: number; }>; loading: BooleanConstructor; prependAvatar: StringConstructor; prependIcon: PropType; queueGap: NumberConstructor; queueIndex: NumberConstructor; title: StringConstructor; text: StringConstructor; reverseTimer: BooleanConstructor; timer: { type: PropType; default: boolean; }; timerColor: StringConstructor; timeout: { type: (NumberConstructor | StringConstructor)[]; default: number; }; vertical: BooleanConstructor; }, vue.ExtractPropTypes<{ theme: StringConstructor; class: PropType; style: { type: PropType; default: null; }; locationStrategy: { type: PropType; default: string; validator: (val: any) => boolean; }; location: { type: PropType; default: string; }; origin: { type: PropType; default: string; }; rounded: { type: (BooleanConstructor | NumberConstructor | StringConstructor)[]; default: undefined; }; tile: BooleanConstructor; color: StringConstructor; variant: { type: PropType; default: string; validator: (v: any) => boolean; }; height: (NumberConstructor | StringConstructor)[]; maxHeight: (NumberConstructor | StringConstructor)[]; maxWidth: (NumberConstructor | StringConstructor)[]; minHeight: (NumberConstructor | StringConstructor)[]; minWidth: (NumberConstructor | StringConstructor)[]; width: (NumberConstructor | StringConstructor)[]; position: { type: PropType<"absolute" | "fixed" | "relative" | "static" | "sticky">; validator: (v: any) => boolean; }; transition: { type: PropType; default: NonNullable; }; closeDelay: (NumberConstructor | StringConstructor)[]; openDelay: (NumberConstructor | StringConstructor)[]; target: PropType<"cursor" | "parent" | Element | [x: number, y: number] | vue.ComponentPublicInstance | (string & {}) | undefined>; activator: PropType<"parent" | Element | vue.ComponentPublicInstance | (string & {}) | undefined>; activatorProps: { type: PropType>; default: () => {}; }; openOnClick: { type: BooleanConstructor; default: undefined; }; openOnHover: BooleanConstructor; openOnFocus: { type: BooleanConstructor; default: undefined; }; closeOnContentClick: BooleanConstructor; eager: BooleanConstructor; absolute: BooleanConstructor; attach: PropType; closeOnBack: Omit<{ type: BooleanConstructor; default: boolean; }, "default" | "type"> & { type: PropType; default: boolean; }; contained: BooleanConstructor; contentClass: null; contentProps: null; disabled: BooleanConstructor; opacity: (NumberConstructor | StringConstructor)[]; modelValue: BooleanConstructor; zIndex: { type: (NumberConstructor | StringConstructor)[]; default: number; }; collapsed: PropType<{ width: number; height: number; }>; loading: BooleanConstructor; prependAvatar: StringConstructor; prependIcon: PropType; queueGap: NumberConstructor; queueIndex: NumberConstructor; title: StringConstructor; text: StringConstructor; reverseTimer: BooleanConstructor; timer: { type: PropType; default: boolean; }; timerColor: StringConstructor; timeout: { type: (NumberConstructor | StringConstructor)[]; default: number; }; vertical: BooleanConstructor; }>>; type VSnackbar = InstanceType; type SnackbarMessageDismissType = 'dismissed' | 'cleared' | 'overflow' | 'auto'; type SingleSnackbarProps = Omit & { style?: any; }; type SnackbarMessage = string | (SingleSnackbarProps & { collapsed?: { width: number; height: number; }; promise?: Promise; success?: (val?: unknown) => SingleSnackbarProps; error?: (val?: Error) => SingleSnackbarProps; onDismiss?: (reason: SnackbarMessageDismissType) => void; }); interface VuetifyOptions { aliases?: Record; blueprint?: Blueprint; components?: Record; date?: DateOptions; directives?: Record; defaults?: DefaultsOptions; display?: DisplayOptions; goTo?: GoToOptions; theme?: ThemeOptions; icons?: IconOptions; locale?: LocaleOptions & RtlOptions; ssr?: SSROptions; } interface Blueprint extends Omit { } declare const version: string; declare function createVuetify(vuetify?: VuetifyOptions): { install: (app: App) => void; unmount: () => void; defaults: vue.Ref; display: DisplayInstance; theme: ThemeInstance & { install: (app: App) => void; }; icons: InternalIconOptions; locale: { name: string; decimalSeparator: vue.ShallowRef; messages: vue.Ref; current: vue.Ref; fallback: vue.Ref; t: (key: string, ...params: unknown[]) => string; n: (value: number) => string; provide: (props: LocaleOptions) => LocaleInstance; isRtl: vue.Ref; rtl: vue.Ref, Record>; rtlClasses: vue.Ref; }; date: { options: InternalDateOptions; instance: { date: (value?: any) => unknown; format: (date: unknown, formatString: string) => string; toJsDate: (value: unknown) => Date; parseISO: (date: string) => unknown; toISO: (date: unknown) => string; startOfDay: (date: unknown) => unknown; endOfDay: (date: unknown) => unknown; startOfWeek: (date: unknown, firstDayOfWeek?: number | string) => unknown; endOfWeek: (date: unknown) => unknown; startOfMonth: (date: unknown) => unknown; endOfMonth: (date: unknown) => unknown; startOfYear: (date: unknown) => unknown; endOfYear: (date: unknown) => unknown; isAfter: (date: unknown, comparing: unknown) => boolean; isAfterDay: (date: unknown, comparing: unknown) => boolean; isSameDay: (date: unknown, comparing: unknown) => boolean; isSameMonth: (date: unknown, comparing: unknown) => boolean; isSameYear: (date: unknown, comparing: unknown) => boolean; isBefore: (date: unknown, comparing: unknown) => boolean; isEqual: (date: unknown, comparing: unknown) => boolean; isValid: (date: any) => boolean; isWithinRange: (date: unknown, range: [unknown, unknown]) => boolean; addMinutes: (date: unknown, amount: number) => unknown; addHours: (date: unknown, amount: number) => unknown; addDays: (date: unknown, amount: number) => unknown; addWeeks: (date: unknown, amount: number) => unknown; addMonths: (date: unknown, amount: number) => unknown; getYear: (date: unknown) => number; setYear: (date: unknown, year: number) => unknown; getDiff: (date: unknown, comparing: unknown, unit?: string) => number; getWeekArray: (date: unknown, firstDayOfWeek?: number | string) => unknown[][]; getWeekdays: (firstDayOfWeek?: number | string, weekdayFormat?: 'long' | 'short' | 'narrow') => string[]; getWeek: (date: unknown, firstDayOfWeek?: number | string, firstDayOfYear?: number | string) => number; getMonth: (date: unknown) => number; setMonth: (date: unknown, month: number) => unknown; getDate: (date: unknown) => number; setDate: (date: unknown, day: number) => unknown; getNextMonth: (date: unknown) => unknown; getPreviousMonth: (date: unknown) => unknown; getHours: (date: unknown) => number; setHours: (date: unknown, hours: number) => unknown; getMinutes: (date: unknown) => number; setMinutes: (date: unknown, minutes: number) => unknown; locale?: any; }; }; goTo: GoToInstance; }; declare namespace createVuetify { var version: string; } export { DateModule, createVuetify, useDate, useDefaults, useDisplay, useGoTo, useHotkey, useLayout, useLocale, useMask, useRtl, useTheme, version }; export type { ActiveStrategy, Anchor, Blueprint, CellPropsFunction as DataTableCellPropsFunction, DataTableCompareFunction, DataTableHeader, HeaderCellPropsFunction as DataTableHeaderCellPropsFunction, RowPropsFunction as DataTableRowPropsFunction, SortItem as DataTableSortItem, DateInstance, DateOptions, DefaultsInstance, DisplayBreakpoint, DisplayInstance, DisplayThresholds, FilterFunction, FilterMatch, GoToInstance, IconAliases, IconOptions, IconProps, IconSet, InternalItem, JSXComponent, LocaleInstance, LocaleMessages, LocaleOptions, LocationStrategyFunction, OpenStrategy, RtlInstance, RtlOptions, ScrollStrategyFunction, SelectStrategy, SnackbarMessage as SnackbarQueueMessage, SubmitEventPromise, ThemeDefinition, ThemeInstance, ValidationRule, VuetifyOptions }; /* eslint-disable local-rules/sort-imports */ import 'vue/jsx' import type { UnwrapNestedRefs, VNodeChild } from 'vue' // These already exist in scope in the final bundle declare global { namespace JSX { interface ElementChildrenAttribute { $children: {} } } } declare module 'vue' { interface Vuetify { defaults: DefaultsInstance display: UnwrapNestedRefs theme: UnwrapNestedRefs icons: IconOptions locale: UnwrapNestedRefs date: DateInstance } export interface ComponentCustomProperties { $vuetify: Vuetify } export interface HTMLAttributes { $children?: VNodeChild } export interface SVGAttributes { $children?: VNodeChild } export interface GlobalComponents { VAppBar: typeof import('vuetify/components')['VAppBar'] VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon'] VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle'] VAvatar: typeof import('vuetify/components')['VAvatar'] VApp: typeof import('vuetify/components')['VApp'] VAlert: typeof import('vuetify/components')['VAlert'] VAlertTitle: typeof import('vuetify/components')['VAlertTitle'] VAutocomplete: typeof import('vuetify/components')['VAutocomplete'] VBadge: typeof import('vuetify/components')['VBadge'] VBottomSheet: typeof import('vuetify/components')['VBottomSheet'] VBanner: typeof import('vuetify/components')['VBanner'] VBannerActions: typeof import('vuetify/components')['VBannerActions'] VBannerText: typeof import('vuetify/components')['VBannerText'] VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs'] VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem'] VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider'] VBtn: typeof import('vuetify/components')['VBtn'] VCalendar: typeof import('vuetify/components')['VCalendar'] VBtnGroup: typeof import('vuetify/components')['VBtnGroup'] VCard: typeof import('vuetify/components')['VCard'] VCardActions: typeof import('vuetify/components')['VCardActions'] VCardItem: typeof import('vuetify/components')['VCardItem'] VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle'] VCardText: typeof import('vuetify/components')['VCardText'] VCardTitle: typeof import('vuetify/components')['VCardTitle'] VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation'] VBtnToggle: typeof import('vuetify/components')['VBtnToggle'] VCarousel: typeof import('vuetify/components')['VCarousel'] VCarouselItem: typeof import('vuetify/components')['VCarouselItem'] VCheckbox: typeof import('vuetify/components')['VCheckbox'] VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn'] VChipGroup: typeof import('vuetify/components')['VChipGroup'] VCode: typeof import('vuetify/components')['VCode'] VChip: typeof import('vuetify/components')['VChip'] VCounter: typeof import('vuetify/components')['VCounter'] VCombobox: typeof import('vuetify/components')['VCombobox'] VDataTable: typeof import('vuetify/components')['VDataTable'] VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders'] VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter'] VDataTableRows: typeof import('vuetify/components')['VDataTableRows'] VDataTableRow: typeof import('vuetify/components')['VDataTableRow'] VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual'] VDataTableServer: typeof import('vuetify/components')['VDataTableServer'] VColorPicker: typeof import('vuetify/components')['VColorPicker'] VDatePicker: typeof import('vuetify/components')['VDatePicker'] VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls'] VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader'] VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth'] VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths'] VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears'] VDialog: typeof import('vuetify/components')['VDialog'] VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels'] VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel'] VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText'] VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle'] VDivider: typeof import('vuetify/components')['VDivider'] VEmptyState: typeof import('vuetify/components')['VEmptyState'] VFooter: typeof import('vuetify/components')['VFooter'] VField: typeof import('vuetify/components')['VField'] VFieldLabel: typeof import('vuetify/components')['VFieldLabel'] VFileInput: typeof import('vuetify/components')['VFileInput'] VHotkey: typeof import('vuetify/components')['VHotkey'] VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll'] VFab: typeof import('vuetify/components')['VFab'] VIcon: typeof import('vuetify/components')['VIcon'] VComponentIcon: typeof import('vuetify/components')['VComponentIcon'] VSvgIcon: typeof import('vuetify/components')['VSvgIcon'] VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon'] VClassIcon: typeof import('vuetify/components')['VClassIcon'] VLabel: typeof import('vuetify/components')['VLabel'] VItemGroup: typeof import('vuetify/components')['VItemGroup'] VItem: typeof import('vuetify/components')['VItem'] VMenu: typeof import('vuetify/components')['VMenu'] VImg: typeof import('vuetify/components')['VImg'] VKbd: typeof import('vuetify/components')['VKbd'] VInput: typeof import('vuetify/components')['VInput'] VMessages: typeof import('vuetify/components')['VMessages'] VList: typeof import('vuetify/components')['VList'] VListGroup: typeof import('vuetify/components')['VListGroup'] VListImg: typeof import('vuetify/components')['VListImg'] VListItem: typeof import('vuetify/components')['VListItem'] VListItemAction: typeof import('vuetify/components')['VListItemAction'] VListItemMedia: typeof import('vuetify/components')['VListItemMedia'] VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle'] VListItemTitle: typeof import('vuetify/components')['VListItemTitle'] VListSubheader: typeof import('vuetify/components')['VListSubheader'] VMain: typeof import('vuetify/components')['VMain'] VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer'] VOtpInput: typeof import('vuetify/components')['VOtpInput'] VNumberInput: typeof import('vuetify/components')['VNumberInput'] VPagination: typeof import('vuetify/components')['VPagination'] VProgressCircular: typeof import('vuetify/components')['VProgressCircular'] VProgressLinear: typeof import('vuetify/components')['VProgressLinear'] VRadioGroup: typeof import('vuetify/components')['VRadioGroup'] VOverlay: typeof import('vuetify/components')['VOverlay'] VSelectionControl: typeof import('vuetify/components')['VSelectionControl'] VRating: typeof import('vuetify/components')['VRating'] VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup'] VSelect: typeof import('vuetify/components')['VSelect'] VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader'] VSheet: typeof import('vuetify/components')['VSheet'] VSlider: typeof import('vuetify/components')['VSlider'] VSlideGroup: typeof import('vuetify/components')['VSlideGroup'] VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem'] VSnackbar: typeof import('vuetify/components')['VSnackbar'] VTab: typeof import('vuetify/components')['VTab'] VTabs: typeof import('vuetify/components')['VTabs'] VTabsWindow: typeof import('vuetify/components')['VTabsWindow'] VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem'] VSwitch: typeof import('vuetify/components')['VSwitch'] VTable: typeof import('vuetify/components')['VTable'] VSystemBar: typeof import('vuetify/components')['VSystemBar'] VStepper: typeof import('vuetify/components')['VStepper'] VStepperActions: typeof import('vuetify/components')['VStepperActions'] VStepperHeader: typeof import('vuetify/components')['VStepperHeader'] VStepperItem: typeof import('vuetify/components')['VStepperItem'] VStepperWindow: typeof import('vuetify/components')['VStepperWindow'] VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem'] VTextarea: typeof import('vuetify/components')['VTextarea'] VTimeline: typeof import('vuetify/components')['VTimeline'] VTimelineItem: typeof import('vuetify/components')['VTimelineItem'] VTextField: typeof import('vuetify/components')['VTextField'] VTimePicker: typeof import('vuetify/components')['VTimePicker'] VTimePickerClock: typeof import('vuetify/components')['VTimePickerClock'] VTimePickerControls: typeof import('vuetify/components')['VTimePickerControls'] VTreeview: typeof import('vuetify/components')['VTreeview'] VTreeviewItem: typeof import('vuetify/components')['VTreeviewItem'] VTreeviewGroup: typeof import('vuetify/components')['VTreeviewGroup'] VToolbar: typeof import('vuetify/components')['VToolbar'] VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle'] VToolbarItems: typeof import('vuetify/components')['VToolbarItems'] VTooltip: typeof import('vuetify/components')['VTooltip'] VWindow: typeof import('vuetify/components')['VWindow'] VWindowItem: typeof import('vuetify/components')['VWindowItem'] VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit'] VDataIterator: typeof import('vuetify/components')['VDataIterator'] VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider'] VContainer: typeof import('vuetify/components')['VContainer'] VCol: typeof import('vuetify/components')['VCol'] VRow: typeof import('vuetify/components')['VRow'] VSpacer: typeof import('vuetify/components')['VSpacer'] VForm: typeof import('vuetify/components')['VForm'] VHover: typeof import('vuetify/components')['VHover'] VLayout: typeof import('vuetify/components')['VLayout'] VLayoutItem: typeof import('vuetify/components')['VLayoutItem'] VLazy: typeof import('vuetify/components')['VLazy'] VNoSsr: typeof import('vuetify/components')['VNoSsr'] VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider'] VParallax: typeof import('vuetify/components')['VParallax'] VRadio: typeof import('vuetify/components')['VRadio'] VRangeSlider: typeof import('vuetify/components')['VRangeSlider'] VResponsive: typeof import('vuetify/components')['VResponsive'] VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue'] VSparkline: typeof import('vuetify/components')['VSparkline'] VSpeedDial: typeof import('vuetify/components')['VSpeedDial'] VThemeProvider: typeof import('vuetify/components')['VThemeProvider'] VValidation: typeof import('vuetify/components')['VValidation'] VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll'] VFabTransition: typeof import('vuetify/components')['VFabTransition'] VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition'] VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition'] VFadeTransition: typeof import('vuetify/components')['VFadeTransition'] VScaleTransition: typeof import('vuetify/components')['VScaleTransition'] VScrollXTransition: typeof import('vuetify/components')['VScrollXTransition'] VScrollXReverseTransition: typeof import('vuetify/components')['VScrollXReverseTransition'] VScrollYTransition: typeof import('vuetify/components')['VScrollYTransition'] VScrollYReverseTransition: typeof import('vuetify/components')['VScrollYReverseTransition'] VSlideXTransition: typeof import('vuetify/components')['VSlideXTransition'] VSlideXReverseTransition: typeof import('vuetify/components')['VSlideXReverseTransition'] VSlideYTransition: typeof import('vuetify/components')['VSlideYTransition'] VSlideYReverseTransition: typeof import('vuetify/components')['VSlideYReverseTransition'] VExpandTransition: typeof import('vuetify/components')['VExpandTransition'] VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition'] VExpandBothTransition: typeof import('vuetify/components')['VExpandBothTransition'] VDialogTransition: typeof import('vuetify/components')['VDialogTransition'] VAvatarGroup: typeof import('vuetify/labs/components')['VAvatarGroup'] VColorInput: typeof import('vuetify/labs/components')['VColorInput'] VIconBtn: typeof import('vuetify/labs/components')['VIconBtn'] VFileUpload: typeof import('vuetify/labs/components')['VFileUpload'] VFileUploadDropzone: typeof import('vuetify/labs/components')['VFileUploadDropzone'] VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem'] VFileUploadList: typeof import('vuetify/labs/components')['VFileUploadList'] VCommandPalette: typeof import('vuetify/labs/components')['VCommandPalette'] VCommandPaletteItem: typeof import('vuetify/labs/components')['VCommandPaletteItem'] VVideo: typeof import('vuetify/labs/components')['VVideo'] VVideoControls: typeof import('vuetify/labs/components')['VVideoControls'] VVideoVolume: typeof import('vuetify/labs/components')['VVideoVolume'] VPie: typeof import('vuetify/labs/components')['VPie'] VPieSegment: typeof import('vuetify/labs/components')['VPieSegment'] VPieTooltip: typeof import('vuetify/labs/components')['VPieTooltip'] VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical'] VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem'] VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions'] VPicker: typeof import('vuetify/labs/components')['VPicker'] VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle'] VDateInput: typeof import('vuetify/labs/components')['VDateInput'] VMaskInput: typeof import('vuetify/labs/components')['VMaskInput'] VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh'] VProgress: typeof import('vuetify/labs/components')['VProgress'] } export interface GlobalDirectives { vClickOutside: typeof import('vuetify/directives')['ClickOutside'] vIntersect: typeof import('vuetify/directives')['Intersect'] vMutate: typeof import('vuetify/directives')['Mutate'] vResize: typeof import('vuetify/directives')['Resize'] vRipple: typeof import('vuetify/directives')['Ripple'] vScroll: typeof import('vuetify/directives')['Scroll'] vTouch: typeof import('vuetify/directives')['Touch'] vTooltip: typeof import('vuetify/directives')['Tooltip'] } }