/** * `openlore export bundle` — serialize the persisted graph index into a single portable, * integrity-stamped artifact (change: add-shareable-graph-artifact). * * A team analyzes once and commits the artifact; a teammate or a CI job imports it * (`openlore import`) and bootstraps a verified index in seconds instead of cold-indexing. * The artifact is a deterministic function of the index — exporting the same index twice is * byte-identical — so it is a generated, regenerate-don't-merge file (see docs). */ export interface BundleExportOptions { out?: string; projectRoot?: string; } export declare function runBundleExport(opts: BundleExportOptions): Promise; //# sourceMappingURL=bundle.d.ts.map