import type { EvoPaths } from "../paths.ts"; import { type EvoPackManifest } from "./pack.ts"; export interface ExportEvoPackOptions { paths: EvoPaths; bundleDigest: string; targetDirectory: string; name: string; version: string; author?: string; description?: string; } /** * Export bundle-owned data and selected registered components as pack.json v1. * The destination must not already exist; failures remove the incomplete tree. */ export declare function exportEvoPack(options: ExportEvoPackOptions): Promise; //# sourceMappingURL=export.d.ts.map