import { ShallowRef, ComputedRef } from 'vue'; import { UploadRequestOptions } from 'element-plus'; export type WetRichTextProvide = { quill: ShallowRef; httpRequest: ComputedRef<(options: UploadRequestOptions) => Promise>; }; export declare const wetRichEditorProps: { initialValue: { readonly type: import('vue').PropType; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; imageHttpRequest: { readonly type: import('vue').PropType<(options: UploadRequestOptions) => Promise>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; showToolsbar: import('element-plus/es/utils').EpPropFinalized; readOnly: import('element-plus/es/utils').EpPropFinalized; }; export type WetProHelpdataSource = { title: string; key: string; children?: WetProHelpdataSource[]; }; export declare const wetProHelpProps: { dataTree: { readonly type: import('vue').PropType; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; dataSource: { readonly type: import('vue').PropType>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; };