import { ControllerResponse } from '../types/common.types.js';
/**
 * Handle search for code content (uses Bitbucket's Code Search API)
 */
export declare function handleCodeSearch(workspaceSlug: string, repoSlug?: string, query?: string, limit?: number, cursor?: string, language?: string, extension?: string): Promise<ControllerResponse>;
