import { IAspect } from "aws-cdk-lib";
import { IConstruct } from "constructs";
/**
 * Aspect to create dependency chain of organization resource that needs to be deployed sequentially
 * @experimental
 */
export declare class DependencyChain implements IAspect {
    private previous;
    visit(current: IConstruct): void;
    private needsChaining;
}
