export declare const AssessmentDelegationStatus: {
    readonly InProgress: "IN_PROGRESS";
    readonly UnderReview: "UNDER_REVIEW";
    readonly Complete: "COMPLETE";
};
/**
 * The status of the delegation.
 */
export type AssessmentDelegationStatus = (typeof AssessmentDelegationStatus)[keyof typeof AssessmentDelegationStatus];
export declare const AssessmentReportDestinationType: {
    readonly S3: "S3";
};
/**
 * The destination type, such as Amazon S3.
 */
export type AssessmentReportDestinationType = (typeof AssessmentReportDestinationType)[keyof typeof AssessmentReportDestinationType];
export declare const AssessmentRoleType: {
    readonly ProcessOwner: "PROCESS_OWNER";
    readonly ResourceOwner: "RESOURCE_OWNER";
};
/**
 *  The IAM role type.
 */
export type AssessmentRoleType = (typeof AssessmentRoleType)[keyof typeof AssessmentRoleType];
export declare const AssessmentStatus: {
    readonly Active: "ACTIVE";
    readonly Inactive: "INACTIVE";
};
/**
 * The status of the specified assessment.
 */
export type AssessmentStatus = (typeof AssessmentStatus)[keyof typeof AssessmentStatus];
