import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The types of tools that the agent is allowed to use. Only works with FAST and ADVANCED `agent` values */ export type ToolSets = { /** * Whether the agent is allowed to use web search (default: true). */ enableWebSearch?: boolean | undefined; /** * Whether the agent is allowed to search internal company resources (default: true). */ enableCompanyTools?: boolean | undefined; }; /** @internal */ export declare const ToolSets$inboundSchema: z.ZodType; /** @internal */ export type ToolSets$Outbound = { enableWebSearch?: boolean | undefined; enableCompanyTools?: boolean | undefined; }; /** @internal */ export declare const ToolSets$outboundSchema: z.ZodType; export declare function toolSetsToJSON(toolSets: ToolSets): string; export declare function toolSetsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=toolsets.d.ts.map