/**
 * Types of content that can be searched in Bitbucket
 */
export declare enum ContentType {
    WIKI = "wiki",
    ISSUE = "issue",
    PULLREQUEST = "pullrequest",
    COMMIT = "commit",
    BRANCH = "branch",
    TAG = "tag"
}
/**
 * Get the display name for a content type
 */
export declare function getContentTypeDisplay(type: ContentType): string;
