import { CloudFormationClient } from '@aws-sdk/client-cloudformation'; import { DeployedBackendResource } from '../deployed_backend_client_factory.js'; import { StackStatusMapper } from './stack_status_mapper.js'; import { ArnGenerator } from './arn_generator.js'; import { ArnParser } from './arn_parser.js'; /** * Lists deployed resources */ export declare class DeployedResourcesEnumerator { private readonly stackStatusMapper; private readonly arnGenerator; private readonly arnParser; /** * Constructs a DeployedResourcesEnumerator */ constructor(stackStatusMapper: StackStatusMapper, arnGenerator: ArnGenerator, arnParser: ArnParser); /** * Lists all resources deployed in all nested cfn stacks */ listDeployedResources: (cfnClient: CloudFormationClient, stackName: string, accountId: string | undefined, region: string | undefined) => Promise; } //# sourceMappingURL=deployed_resources_enumerator.d.ts.map