export declare const RepositoryAssociationType: {
    readonly CodeCommit: "CodeCommit";
    readonly Bitbucket: "Bitbucket";
    readonly GitHubEnterpriseServer: "GitHubEnterpriseServer";
    readonly S3Bucket: "S3Bucket";
};
/**
 * The type of repository to be associated.
 */
export type RepositoryAssociationType = (typeof RepositoryAssociationType)[keyof typeof RepositoryAssociationType];
