/** * Gallery Page Template — Generates the main preview HTML page. * * Extracted from src/commands/preview.ts to keep the command file * as a thin orchestrator (~80 lines) instead of 4000+ lines. */ import type { PreviewData } from "./types.js"; export declare function generatePreviewHTML(data: PreviewData): string;