import type { Schema } from 'prosemirror-model'; import type { ActionSpec } from "../../../core/index.js"; export type AddImageAttrs = { src: string; title?: string; alt?: string; }; export declare const addImage: (schema: Schema) => ActionSpec;