import Controller from './Controller'; import type { Editor } from '../Editor'; import type { ContentService, Document } from '@fast-editor/core'; export default class ContentController extends Controller { private service; constructor(editor: Editor, doc: Document, service: ContentService); insertImage(url: string, width: number, height: number): void; }