import type { Schema } from 'prosemirror-model'; import type { ActionSpec } from "../../../core/index.js"; import { type AddImageAttrs as AddImageAttrsBase } from "../../markdown/Image/index.js"; export type AddImageAttrs = AddImageAttrsBase & { width?: string | number; height?: string | number; }; export declare const addImage: (schema: Schema) => ActionSpec;