import { Editor as EditorClass } from 'tinymce'; import { Ref } from 'vue'; export type EditorProps = { color: 'primary' | 'secondary'; error?: boolean; plugins?: string[] | string; toolbar?: string[] | string; menubar?: string[] | string; modelValue?: string; hiddenPlugins?: string[]; }; declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps, { editor: Ref; }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "editor:init": (editor: EditorClass) => void; blur: () => void; "update:modelValue": (value: string) => void; }, string, import('vue').PublicProps, Readonly>> & { onBlur?: (() => any) | undefined; "onUpdate:modelValue"?: ((value: string) => any) | undefined; "onEditor:init"?: ((editor: EditorClass) => any) | undefined; }, {}, {}>; export default _default; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType<__VLS_NonUndefinedable>; } : { type: import('vue').PropType; required: true; }; };