import type { ExtractPropTypes, SlotsType } from 'vue'; export declare const editorProps: { modelValue: { type: StringConstructor; }; placeholder: { type: StringConstructor; }; height: { type: StringConstructor; }; maxHeight: { type: StringConstructor; }; readonly: { type: BooleanConstructor; }; disabled: { type: BooleanConstructor; }; validateEvent: { type: BooleanConstructor; default: boolean; }; }; export type EditorProps = ExtractPropTypes; export interface EditorSlots { default: {}; } export declare const editorSlots: SlotsType; export declare const editorEmits: { change: (value: string) => boolean; 'update:modelValue': (value: string) => boolean; }; export type EditorEmits = typeof editorEmits; export interface EditorExpose { }