/** * YAML app compilation and deployment. * * Thin delegation to CompilerService — kept as a separate module * so the engine index reads as a clear list of capabilities. */ import { StoreService } from '../store'; import { StreamService } from '../stream'; import { ILogger } from '../logger'; import { HotMeshManifest } from '../../types/hotmesh'; import { ProviderClient, ProviderTransaction } from '../../types/provider'; interface CompilerContext { store: StoreService; stream: StreamService; logger: ILogger; } export declare function plan(instance: CompilerContext, pathOrYAML: string): Promise; export declare function deploy(instance: CompilerContext, pathOrYAML: string): Promise; export {};