import React from "react"; import { Stacks } from "../../stacks/index.js"; import type { CloudAssembly } from "aws-cdk-lib/cx-api"; interface Props { assembly: CloudAssembly; remove?: boolean; } export declare const DeploymentUI: (props: Props) => React.JSX.Element; export declare function printDeploymentResults(assembly: CloudAssembly, results: Awaited>, remove?: boolean): void; export {};