import { OnyxApiService } from '../services/onyxApi.js';
/**
 * Handle the search_onyx tool request
 * @param args The tool arguments
 * @param onyxApiService The Onyx API service
 * @returns The tool response
 */
export declare function handleSearchOnyx(args: unknown, onyxApiService: OnyxApiService): Promise<{
    content: {
        type: string;
        text: string;
    }[];
    isError?: undefined;
} | {
    content: {
        type: string;
        text: string;
    }[];
    isError: boolean;
}>;
