import type { PlaywrightBrowser } from '../playwright/client.js'; /** * Creates a Strands SDK tool for evaluating JavaScript. * Thin wrapper around PlaywrightBrowser.evaluate() * * @experimental */ export declare function createEvaluateTool(client: PlaywrightBrowser): import("@strands-agents/sdk").InvokableTool<{ script: string; args?: any[] | undefined; }, { success: true; result: any; error?: never; } | { success: false; error: string; result?: never; }>; //# sourceMappingURL=evaluate-tool.d.ts.map