import type { YooEditor, YooptaPathIndex } from '@yoopta/editor'; import type { ImageElement, ImageElementProps } from '../types'; type ImageElementOptions = { props?: Omit; }; type InsertImageOptions = ImageElementOptions & { at?: YooptaPathIndex; focus?: boolean; }; export type ImageCommands = { buildImageElements: (editor: YooEditor, options?: Partial) => ImageElement; insertImage: (editor: YooEditor, options?: Partial) => void; deleteImage: (editor: YooEditor, blockId: string) => void; updateImage: (editor: YooEditor, blockId: string, props: Partial) => void; }; export declare const ImageCommands: ImageCommands; export {}; //# sourceMappingURL=index.d.ts.map