import { BaseCellAnchorXform } from "./base-cell-anchor-xform.js"; /** * Xform for — images positioned by absolute coordinates * rather than cell references. * * Structure: * ```xml * * * * ... * * * ``` */ declare class AbsoluteAnchorXform extends BaseCellAnchorXform { constructor(); get tag(): string; prepare(model: any, options: { index: number; }): void; render(xmlStream: any, model: any): void; parseClose(name: string): boolean; reconcile(model: any, options: any): void; } export { AbsoluteAnchorXform };