import { PortingModule } from './models.js'; export interface ToolExecution { name: string; sourceHint: string; payload: string; handled: boolean; message: string; } export declare const PORTED_TOOLS: PortingModule[]; export { PortingModule }; export declare function getTool(name: string): PortingModule | undefined; export declare function getTools(simpleMode?: boolean): PortingModule[]; export declare function findTools(query: string, limit?: number): PortingModule[]; export declare function executeTool(name: string, payload?: string): Promise;