import type { CloudflareClient } from "../client/cloudflare-client.js"; export declare const workerSecretsToolDefinitions: ({ name: string; description: string; inputSchema: { type: "object"; properties: { script_name: { type: string; description: string; }; secret_name?: undefined; secret_value?: undefined; }; required: string[]; }; } | { name: string; description: string; inputSchema: { type: "object"; properties: { script_name: { type: string; description: string; }; secret_name: { type: string; description: string; }; secret_value: { type: string; description: string; }; }; required: string[]; }; } | { name: string; description: string; inputSchema: { type: "object"; properties: { script_name: { type: string; description: string; }; secret_name: { type: string; description: string; }; secret_value?: undefined; }; required: string[]; }; })[]; export declare function handleWorkerSecretsTool(name: string, args: Record, client: CloudflareClient): Promise<{ content: Array<{ type: "text"; text: string; }>; }>; //# sourceMappingURL=worker-secrets.d.ts.map