import { z } from 'zod'; export declare const screenshotTool: { name: string; description: string; inputSchema: z.ZodObject<{ tabId: z.ZodString; selector: z.ZodOptional; xpath: z.ZodOptional; scale: z.ZodDefault; format: z.ZodDefault>; quality: z.ZodDefault; }, "strip", z.ZodTypeAny, { tabId: string; scale: number; format: "webp" | "jpeg" | "png"; quality: number; selector?: string | undefined; xpath?: string | undefined; }, { tabId: string; selector?: string | undefined; xpath?: string | undefined; scale?: number | undefined; format?: "webp" | "jpeg" | "png" | undefined; quality?: number | undefined; }>; }; export declare const evaluateTool: { name: string; description: string; inputSchema: z.ZodObject<{ tabId: z.ZodString; code: z.ZodString; }, "strip", z.ZodTypeAny, { tabId: string; code: string; }, { tabId: string; code: string; }>; }; export declare const domTool: { name: string; description: string; inputSchema: z.ZodObject<{ tabId: z.ZodString; selector: z.ZodOptional; xpath: z.ZodOptional; }, "strip", z.ZodTypeAny, { tabId: string; selector?: string | undefined; xpath?: string | undefined; }, { tabId: string; selector?: string | undefined; xpath?: string | undefined; }>; }; export declare const elementsFromPointTool: { name: string; description: string; inputSchema: z.ZodObject<{ tabId: z.ZodString; x: z.ZodNumber; y: z.ZodNumber; }, "strip", z.ZodTypeAny, { tabId: string; x: number; y: number; }, { tabId: string; x: number; y: number; }>; }; export declare const querySelectorAllTool: { name: string; description: string; inputSchema: z.ZodEffects; xpath: z.ZodOptional; }, "strip", z.ZodTypeAny, { tabId: string; selector?: string | undefined; xpath?: string | undefined; }, { tabId: string; selector?: string | undefined; xpath?: string | undefined; }>, { tabId: string; selector?: string | undefined; xpath?: string | undefined; }, { tabId: string; selector?: string | undefined; xpath?: string | undefined; }>; }; //# sourceMappingURL=capture.d.ts.map