import { BaseXform } from "../base-xform.js"; interface BlipModel { rId: string; /** Alpha modulation (opacity) as OOXML percentage (e.g. 15000 = 15%). */ alphaModFix?: number; /** * When true, the blip references an external linked image via `r:link` * instead of an embedded one via `r:embed`. */ external?: boolean; /** * Relationship id of an SVG companion. When set, the raster blip carries an * `asvg:svgBlip` extension referencing the SVG media so Excel 2016+ renders * the vector image while older consumers fall back to the raster blip. */ svgRId?: string; } declare class BlipXform extends BaseXform { constructor(); get tag(): string; render(xmlStream: any, model: BlipModel): void; parseOpen(node: any): boolean; parseText(): void; parseClose(name: string): boolean; } export { BlipXform, type BlipModel };