/** * @nexart/ui-renderer v0.8.0 - Preview Renderer * * Renders visual approximations of NexArt systems. * Lightweight preview runtime — NOT canonical, NOT archival. * For canonical output: use @nexart/codemode-sdk */ import type { NexArtSystem, PreviewOptions } from '../types'; export interface PreviewRenderer { render: () => void; start: () => void; stop: () => void; destroy: () => void; isCanonical: false; isArchival: false; } export declare function previewSystem(system: NexArtSystem, canvas: HTMLCanvasElement, options?: PreviewOptions): PreviewRenderer; //# sourceMappingURL=renderer.d.ts.map