import type { EditorMdProps } from '../editor-md-types'; import type { Ref } from 'vue'; export declare function useEditorMd(props: EditorMdProps, emits: any): { editorRef: Ref; overlayRef: Ref; cursorRef: Ref; renderRef: Ref; containerRef: Ref; toolbars: Record; toolbarConfig: Ref; previewHtmlList: Ref; isHintShow: Ref; customToolbars: Ref | undefined, Record | undefined> | undefined; getEditorIns: () => any; onPaste: (e: ClipboardEvent) => void; previewContentChange: (html: string) => void; onChecked: (e: string) => void; onPreviewScroll: () => void; onPreviewMouseout: () => void; onPreviewMouseover: () => void; };