import { BoundaryManager } from "../governance/boundary.js"; import { MailClient } from "../io/mail.js"; import { ToolRegistry } from "./registry.js"; import { makeReadTool } from "./read.js"; import { makeWriteTool } from "./write.js"; import { makeEditTool } from "./edit.js"; import { makeExecTool } from "./exec.js"; import { makeMailTool } from "./mail.js"; export { makeReadTool, makeWriteTool, makeEditTool, makeExecTool, makeMailTool }; export interface ToolSetOptions { boundary: BoundaryManager; mail: MailClient; tools?: Array<"read" | "write" | "edit" | "exec" | "mail">; execAllowlist?: string[]; } export declare function createDefaultToolset({ boundary, mail, tools, execAllowlist }: ToolSetOptions): ToolRegistry; //# sourceMappingURL=index.d.ts.map