import type { ZeBuildAssetsMap } from 'zephyr-edge-contract'; import type { ZephyrEngine } from 'zephyr-agent'; export interface UploadOptions { zephyr_engine: ZephyrEngine; assetsMap: ZeBuildAssetsMap; } /** * Orchestrate the upload process: * * 1. Start a new build * 2. Upload assets with build stats * 3. Finish the build */ export declare function uploadAssets(options: UploadOptions): Promise;