import * as cdk from "aws-cdk-lib"; import type * as constructs from "constructs"; /** * Tag all supported resources within an application. * * CDK will propagate tags too all resources that support it. */ export declare function tagResources(scope: constructs.Construct, tags: (stack: cdk.Stack) => Record): void;