import { type IKeyboardEvent, editor as monacoEditor } from 'monaco-editor'; import 'tippy.js/dist/tippy.css'; type __VLS_Props = { disabled?: boolean; modelValue?: string; placeholder?: string; prompts?: string[]; }; declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, { readonly editor: monacoEditor.IStandaloneCodeEditor; }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & { focus: () => any; keydown: (event: IKeyboardEvent) => any; "update:modelValue": (value: string) => any; layoutChange: (layoutInfo: monacoEditor.EditorLayoutInfo) => any; }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{ onFocus?: (() => any) | undefined; onKeydown?: ((event: IKeyboardEvent) => any) | undefined; "onUpdate:modelValue"?: ((value: string) => any) | undefined; onLayoutChange?: ((layoutInfo: monacoEditor.EditorLayoutInfo) => any) | undefined; }>, { placeholder: string; disabled: boolean; modelValue: string; prompts: string[]; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default;