import { BaseCellAnchorXform } from "./base-cell-anchor-xform.js"; interface OneCellModel { range: { editAs?: string; tl: any; ext: any; }; picture?: any; shape?: any; /** Graphic frame model (for charts and other embedded objects) */ graphicFrame?: any; } declare class OneCellAnchorXform extends BaseCellAnchorXform { constructor(); get tag(): string; prepare(model: OneCellModel, options: { index: number; }): void; render(xmlStream: any, model: OneCellModel): void; parseClose(name: string): boolean; reconcile(model: any, options: any): void; } export { OneCellAnchorXform };