import { BitbucketApiClient } from '../utils/api-client.js';
export declare class SearchHandlers {
    private apiClient;
    private baseUrl;
    constructor(apiClient: BitbucketApiClient, baseUrl: string);
    handleSearchCode(args: any): Promise<{
        content: {
            type: string;
            text: string;
        }[];
        isError?: undefined;
    } | {
        content: {
            type: string;
            text: string;
        }[];
        isError: boolean;
    }>;
}
//# sourceMappingURL=search-handlers.d.ts.map