/** * API Call Tool - Execute direct API calls with inherited authentication */ import type { ApiCallOptions } from '../types/index.js'; import { BrowserManager } from '../core/browser-manager.js'; export declare class ApiCallTool { private browserManager; constructor(browserManager: BrowserManager); execute(url: string, options?: ApiCallOptions): Promise<{ status: number; headers: Record; body: any; metadata: { duration: number; method: string; }; }>; } //# sourceMappingURL=api-call-tool.d.ts.map