/** * Memory card image rendering (Sharp + SVG) * Generates high-contrast visual panels with Frame state for vision-token compression * * Uses SVG for layout/styling and Sharp for PNG conversion (no system dependencies) */ import type { Frame } from "./types.js"; import { type CardDimensions, type ColorScheme, type FontConfig } from "./templates.js"; export interface RenderOptions { dimensions?: CardDimensions; colorScheme?: ColorScheme; fontConfig?: FontConfig; rawContext?: string; } /** * Render memory card as PNG image */ export declare function renderMemoryCard(frame: Frame, rawContext?: string): Promise; /** * Render memory card with custom options */ export declare function renderMemoryCardWithOptions(frame: Frame, options: RenderOptions): Promise;