import { BaseXform } from "../base-xform.js"; declare abstract class BaseCellAnchorXform extends BaseXform { map: { [key: string]: any; }; parser: any; model: any; abstract get tag(): string; parseOpen(node: any): boolean; parseText(text: string): void; reconcilePicture(model: any, options: any): any; /** * Resolve (or create) the media entry for an external linked image. The * synthesized entry is appended to `options.media` and indexed by its link * so repeated references to the same external image share one entry. */ private reconcileExternalPicture; } export { BaseCellAnchorXform };