export declare const DeploymentStatus: {
    readonly Completed: "COMPLETED";
    readonly Creating: "CREATING";
    readonly DeleteInProgress: "DELETE_IN_PROGRESS";
    readonly DeleteInitiating: "DELETE_INITIATING";
    readonly DeleteFailed: "DELETE_FAILED";
    readonly Deleted: "DELETED";
    readonly Failed: "FAILED";
    readonly InProgress: "IN_PROGRESS";
    readonly Validating: "VALIDATING";
};
export type DeploymentStatus = (typeof DeploymentStatus)[keyof typeof DeploymentStatus];
