export interface ExportFlags { root: string; outDir?: string; reanalyze?: boolean; } /** * Emit a self-contained, hostable static bundle (the dashboard + a `data.json`) * to an EXTERNAL directory. Deploy that folder to any static host (Netlify, * Vercel, S3, GitHub Pages, nginx) — the app fetches `./data.json` at runtime. */ export declare function exportCommand(flags: ExportFlags): Promise;