importtype * as cxapi from'@aws-cdk/cx-api';
/**
* @returns an array with the tags available in the stack metadata.
*/exportdeclarefunctiontagsForStack(stack: cxapi.CloudFormationStackArtifact): Tag[];
exportinterfaceTag {
readonlyKey: string;
readonlyValue: string;
}