import type { IEditor } from 'roosterjs-content-model-types'; /** * Insert an image into current selected position * @param editor The editor to operate on * @param file Image Blob file or source string */ export declare function insertImage(editor: IEditor, imageFileOrSrc: File | string): void;