import * as cxapi from '@aws-cdk/cloud-assembly-api'; import { WorkGraph } from './work-graph'; import type { IoHelper } from '../io/private'; /** * Build a WorkGraph for destroy with reversed dependencies. * * In deploy order, if A depends on B, B is deployed first. For destroy, * the arrows are reversed: A must be destroyed before B. */ export declare function buildDestroyWorkGraph(stacks: cxapi.CloudFormationStackArtifact[], ioHelper: IoHelper): WorkGraph; //# sourceMappingURL=build-destroy-work-graph.d.ts.map