import { Tool } from "../../tools/base.js"; /** * Abstract base class for toolkits in LangChain. Toolkits are collections * of tools that agents can use. Subclasses must implement the `tools` * property to provide the specific tools for the toolkit. */ export declare abstract class Toolkit { abstract tools: Tool[]; }