export declare const AnalysisType: { readonly CODE_QUALITY: "CodeQuality"; readonly SECURITY: "Security"; }; export type AnalysisType = (typeof AnalysisType)[keyof typeof AnalysisType]; export declare const EncryptionOption: { readonly AoCmk: "AWS_OWNED_CMK"; readonly CmCmk: "CUSTOMER_MANAGED_CMK"; }; export type EncryptionOption = (typeof EncryptionOption)[keyof typeof EncryptionOption]; export declare const ProviderType: { readonly BITBUCKET: "Bitbucket"; readonly CODE_COMMIT: "CodeCommit"; readonly GIT_HUB: "GitHub"; readonly GIT_HUB_ENTERPRISE_SERVER: "GitHubEnterpriseServer"; readonly S3_BUCKET: "S3Bucket"; }; export type ProviderType = (typeof ProviderType)[keyof typeof ProviderType]; export declare const RepositoryAssociationState: { readonly ASSOCIATED: "Associated"; readonly ASSOCIATING: "Associating"; readonly DISASSOCIATED: "Disassociated"; readonly DISASSOCIATING: "Disassociating"; readonly FAILED: "Failed"; }; export type RepositoryAssociationState = (typeof RepositoryAssociationState)[keyof typeof RepositoryAssociationState]; export declare const VendorName: { readonly GITHUB: "GitHub"; readonly GITLAB: "GitLab"; readonly NATIVE_S3: "NativeS3"; }; export type VendorName = (typeof VendorName)[keyof typeof VendorName]; export declare const ConfigFileState: { readonly ABSENT: "Absent"; readonly PRESENT: "Present"; readonly PRESENT_WITH_ERRORS: "PresentWithErrors"; }; export type ConfigFileState = (typeof ConfigFileState)[keyof typeof ConfigFileState]; export declare const JobState: { readonly COMPLETED: "Completed"; readonly DELETING: "Deleting"; readonly FAILED: "Failed"; readonly PENDING: "Pending"; }; export type JobState = (typeof JobState)[keyof typeof JobState]; export declare const Type: { readonly PULL_REQUEST: "PullRequest"; readonly REPOSITORY_ANALYSIS: "RepositoryAnalysis"; }; export type Type = (typeof Type)[keyof typeof Type]; export declare const Reaction: { readonly THUMBS_DOWN: "ThumbsDown"; readonly THUMBS_UP: "ThumbsUp"; }; export type Reaction = (typeof Reaction)[keyof typeof Reaction]; export declare const RecommendationCategory: { readonly AWS_BEST_PRACTICES: "AWSBestPractices"; readonly AWS_CLOUDFORMATION_ISSUES: "AWSCloudFormationIssues"; readonly CODE_INCONSISTENCIES: "CodeInconsistencies"; readonly CODE_MAINTENANCE_ISSUES: "CodeMaintenanceIssues"; readonly CONCURRENCY_ISSUES: "ConcurrencyIssues"; readonly DUPLICATE_CODE: "DuplicateCode"; readonly INPUT_VALIDATIONS: "InputValidations"; readonly JAVA_BEST_PRACTICES: "JavaBestPractices"; readonly PYTHON_BEST_PRACTICES: "PythonBestPractices"; readonly RESOURCE_LEAKS: "ResourceLeaks"; readonly SECURITY_ISSUES: "SecurityIssues"; }; export type RecommendationCategory = (typeof RecommendationCategory)[keyof typeof RecommendationCategory]; export declare const Severity: { readonly CRITICAL: "Critical"; readonly HIGH: "High"; readonly INFO: "Info"; readonly LOW: "Low"; readonly MEDIUM: "Medium"; }; export type Severity = (typeof Severity)[keyof typeof Severity];