/**
 * @public
 * @enum
 */
export declare const PrimaryEmailUpdateStatus: {
    readonly ACCEPTED: "ACCEPTED";
    readonly PENDING: "PENDING";
};
/**
 * @public
 */
export type PrimaryEmailUpdateStatus = (typeof PrimaryEmailUpdateStatus)[keyof typeof PrimaryEmailUpdateStatus];
/**
 * @public
 * @enum
 */
export declare const ValidationExceptionReason: {
    readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
    readonly INVALID_REGION_OPT_TARGET: "invalidRegionOptTarget";
};
/**
 * @public
 */
export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
/**
 * @public
 * @enum
 */
export declare const AccountState: {
    readonly ACTIVE: "ACTIVE";
    readonly CLOSED: "CLOSED";
    readonly PENDING_ACTIVATION: "PENDING_ACTIVATION";
    readonly SUSPENDED: "SUSPENDED";
};
/**
 * @public
 */
export type AccountState = (typeof AccountState)[keyof typeof AccountState];
/**
 * @public
 * @enum
 */
export declare const AlternateContactType: {
    readonly BILLING: "BILLING";
    readonly OPERATIONS: "OPERATIONS";
    readonly SECURITY: "SECURITY";
};
/**
 * @public
 */
export type AlternateContactType = (typeof AlternateContactType)[keyof typeof AlternateContactType];
/**
 * @public
 * @enum
 */
export declare const AwsAccountState: {
    readonly ACTIVE: "ACTIVE";
    readonly CLOSED: "CLOSED";
    readonly PENDING_ACTIVATION: "PENDING_ACTIVATION";
    readonly SUSPENDED: "SUSPENDED";
};
/**
 * @public
 */
export type AwsAccountState = (typeof AwsAccountState)[keyof typeof AwsAccountState];
/**
 * @public
 * @enum
 */
export declare const RegionOptStatus: {
    readonly DISABLED: "DISABLED";
    readonly DISABLING: "DISABLING";
    readonly ENABLED: "ENABLED";
    readonly ENABLED_BY_DEFAULT: "ENABLED_BY_DEFAULT";
    readonly ENABLING: "ENABLING";
};
/**
 * @public
 */
export type RegionOptStatus = (typeof RegionOptStatus)[keyof typeof RegionOptStatus];
