import { AzureDevOpsCredentialsProvider, AzureIntegrationConfig } from '@backstage/integration'; export interface CodeSearchResponse { count: number; results: CodeSearchResultItem[]; } export interface CodeSearchResultItem { fileName: string; path: string; repository: { name: string; }; project: { name: string; }; branch?: string; } export declare function codeSearch(credentialsProvider: AzureDevOpsCredentialsProvider, azureConfig: AzureIntegrationConfig, org: string, project: string, repo: string, path: string, branch: string): Promise;