import { Ref } from 'vue'; export declare function useEditorCommands(editorRef: Ref, onSync: (html?: string) => void): { exec: (command: string, value?: string) => void; isActive: (command: string) => boolean; applyBlock: (tag: string) => void; applyFont: (fontName: string) => void; applyForeColor: (color: string) => void; applyBackColor: (color: string) => void; handleIndent: (type: "indent" | "outdent") => void; }; //# sourceMappingURL=useEditorCommands.d.ts.map