import { BaseXform } from "../base-xform.js"; export interface ShapeModel { /** Drawing object id (must be unique within drawing part) */ cNvPrId: number; /** Display name (e.g. "Check Box 1") */ name: string; /** VML spid compat value (e.g. "_x0000_s1025") */ spid: string; /** Text shown in the shape text box */ text: string; /** Whether the shape should be hidden */ hidden?: boolean; } declare class SpXform extends BaseXform { get tag(): string; render(xmlStream: any, model?: ShapeModel): void; } export { SpXform };