import { InputInstance } from "../../input/src/instance.js"; import "../../input/index.js"; import { TooltipInstance } from "../../tooltip/src/tooltip.js"; import "../../tooltip/index.js"; import { MentionOption } from "./types.js"; import { MentionProps } from "./mention.js"; import * as vue from "vue"; //#region ../../packages/components/mention/src/mention.vue.d.ts declare const __VLS_export: (__VLS_props: NonNullable>["props"], __VLS_ctx?: __VLS_PrettifyLocal>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable>["expose"], __VLS_setup?: Promise<{ props: vue.PublicProps & __VLS_PrettifyLocal & { onSearch?: ((pattern: string, prefix: string) => any) | undefined; "onUpdate:modelValue"?: ((value: string) => any) | undefined; onInput?: ((value: string) => any) | undefined; onFocus?: ((evt: FocusEvent) => any) | undefined; onSelect?: ((option: MentionOption, prefix: string) => any) | undefined; onBlur?: ((evt: FocusEvent) => any) | undefined; "onWhole-remove"?: ((pattern: string, prefix: string) => any) | undefined; }> & (typeof globalThis extends { __VLS_PROPS_FALLBACK: infer P; } ? P : {}); expose: (exposed: vue.ShallowUnwrapRef<{ input: vue.Ref; tooltip: vue.Ref; dropdownVisible: vue.ComputedRef; }>) => void; attrs: any; slots: Readonly<{ [name: string]: vue.Slot | undefined; }> & { prepend?: (props: {}) => any; } & { prefix?: (props: {}) => any; } & { suffix?: (props: {}) => any; } & { 'password-icon'?: (props: { visible: boolean; }) => any; } & { append?: (props: {}) => any; } & { header?: () => any; footer?: () => any; loading?: () => any; label?: (props: { item: T & MentionOption; index: number; }) => any; }; emit: ((event: "search", pattern: string, prefix: string) => void) & ((event: "update:modelValue", value: string) => void) & ((event: "input", value: string) => void) & ((event: "focus", evt: FocusEvent) => void) & ((event: "select", option: MentionOption, prefix: string) => void) & ((event: "blur", evt: FocusEvent) => void) & ((event: "whole-remove", pattern: string, prefix: string) => void); }>) => vue.VNode & { __ctx?: Awaited; }; declare const _default: typeof __VLS_export; type __VLS_PrettifyLocal = (T extends any ? { [K in keyof T]: T[K] } : { [K in keyof T as K]: T[K] }) & {}; //#endregion export { _default };