import { z } from 'zod'; export declare const navigateTool: { name: string; description: string; inputSchema: z.ZodObject<{ tabId: z.ZodString; url: z.ZodString; timeout: z.ZodDefault>; }, "strip", z.ZodTypeAny, { tabId: string; url: string; timeout: number; }, { tabId: string; url: string; timeout?: number | undefined; }>; }; export declare const goBackTool: { name: string; description: string; inputSchema: z.ZodObject<{ tabId: z.ZodString; }, "strip", z.ZodTypeAny, { tabId: string; }, { tabId: string; }>; }; export declare const goForwardTool: { name: string; description: string; inputSchema: z.ZodObject<{ tabId: z.ZodString; }, "strip", z.ZodTypeAny, { tabId: string; }, { tabId: string; }>; }; //# sourceMappingURL=navigate.d.ts.map