import { CloudFormation } from '@aws-sdk/client-cloudformation'; declare class CloudFormationGateway { private cloudFormationService; constructor(cloudFormationService: CloudFormation); /** * Get the status of a CloudFormation stack * * @param {string} StackName * @returns {string} the stack status */ getStackStatus(StackName: string): Promise; } export = CloudFormationGateway; //# sourceMappingURL=CloudFormationGateway.d.ts.map