import { EngineService } from '../engine'; import { QuorumService } from '../quorum'; import { HotMeshManifest } from '../../types/hotmesh'; interface DeploymentContext { engine: EngineService | null; quorum: QuorumService | null; } /** * Preview changes and provide an analysis of risk prior to deployment. * @private */ export declare function plan(instance: DeploymentContext, path: string): Promise; /** * Deploys a YAML workflow graph to Postgres. */ export declare function deploy(instance: DeploymentContext, pathOrYAML: string): Promise; /** * Activates a deployed version across the entire mesh. */ export declare function activate(instance: DeploymentContext, version: string, delay?: number): Promise; export {};