import type * as cxapi from '@aws-cdk/cloud-assembly-api'; export interface BootstrapEnvironmentProgress { /** * The total number of environments being deployed */ readonly total: number; /** * The count of the environment currently bootstrapped * * This is counting value, not an identifier. */ readonly current: number; /** * The environment that's currently being bootstrapped */ readonly environment: cxapi.Environment; } //# sourceMappingURL=bootstrap-environment-progress.d.ts.map