import type { ExtractPropTypes } from 'vue'; export type ToolBarKeys = '|' | 'blockquote' | 'header1' | 'header2' | 'header3' | 'bold' | 'underline' | 'italic' | 'clearStyle' | 'bgColor' | 'color' | 'through' | 'bulletedList' | 'numberedList' | 'todo' | 'justifyLeft' | 'justifyRight' | 'justifyCenter' | 'insertLink' | 'group-image' | 'insertVideo' | 'insertTable' | 'codeBlock' | 'undo' | 'redo' | 'fullScreen'; export declare const textEditorProps: { readonly mode: { readonly type: PropType<"default" | "simple">; readonly default: "default"; }; /** 指定移除的工具栏功能 */ readonly exclude: { readonly type: PropType; }; /** 指定包含的工具栏功能 */ readonly include: { readonly type: PropType; }; readonly modelValue: { readonly type: StringConstructor; }; readonly placeholder: { readonly type: StringConstructor; readonly default: "请输入内容"; }; readonly label: { type: StringConstructor; }; readonly field: { type: StringConstructor; }; readonly tips: { type: StringConstructor; }; readonly span: { type: PropType; }; readonly required: { type: BooleanConstructor; }; }; export type TextEditorProps = ExtractPropTypes;