import { AwsCliTask } from './AwsCliTask';
export interface CloudFormationDeployParameters {
    templateFile: string;
    stackName: string;
    s3Bucket?: string;
    s3Prefix?: string;
    kmsKeyId?: string;
    parameterOverrides?: string[];
    capabilities?: string[];
    forceUpload?: boolean;
    noExecuteChangeset?: boolean;
    roleArn?: string;
    notificationArns?: string[];
    failOnEmptyChangeset?: boolean;
    noFailOnEmptyChangeset?: boolean;
    tags: string[];
}
export declare class CloudFormationDeployTask extends AwsCliTask<CloudFormationDeployParameters> {
    constructor();
}
//# sourceMappingURL=CloudFormationDeployTask.d.ts.map