import { Tool } from '@modelcontextprotocol/sdk/types.js';
import { EPortalClient } from '../utils/api-client.js';
export declare function registerPatchsetTools(tools: Map<string, Tool>): void;
export declare function handlePatchsetTool(name: string, args: any, client: EPortalClient): Promise<{
    content: {
        type: string;
        text: string;
    }[];
    isError?: undefined;
} | {
    content: {
        type: string;
        text: string;
    }[];
    isError: boolean;
}>;
//# sourceMappingURL=patchsets.d.ts.map