import { ExecutionRun } from '../stores/workflowStore'; /** * Export execution runs to a ZIP file * Uses JSZip for ZIP creation (client-side, no server needed) */ export declare function exportRuns(runs: ExecutionRun[]): Promise; /** * Export a single run */ export declare function exportSingleRun(run: ExecutionRun): Promise;