import type { StructuredToolInterface } from '@langchain/core/tools'; export default abstract class RemoteTool { base: StructuredToolInterface; sourceId: string; sourceType: string; mcpServerId?: string; constructor(options: { tool: StructuredToolInterface; sourceId?: string; sourceType?: string; mcpServerId?: string; }); get sanitizedName(): string; } //# sourceMappingURL=remote-tool.d.ts.map