/** * Generate SVG from xterm.js buffer with colors * * Extracts styled content directly from the terminal buffer, * preserving colors for accurate terminal rendering. */ import type { Terminal } from "@xterm/headless"; import { Theme } from "./themes.js"; interface SvgOptions { fontSize?: number; fontFamily?: string; theme?: Theme; border?: { style: string; title?: string; }; } export declare function bufferToSvg(terminal: InstanceType, cols: number, rows: number, options?: SvgOptions): string; export {}; //# sourceMappingURL=buffer-to-svg.d.ts.map