import { z } from 'zod'; export declare const NavigateOpenInputSchema: z.ZodObject<{ url: z.ZodString; viewport: z.ZodOptional; height: z.ZodDefault; }, "strip", z.ZodTypeAny, { width: number; height: number; }, { width?: number | undefined; height?: number | undefined; }>>; userAgent: z.ZodOptional; timeoutMs: z.ZodDefault; persistSessionKey: z.ZodOptional; extraHeaders: z.ZodOptional>; proxy: z.ZodOptional; waitUntil: z.ZodDefault>; }, "strip", z.ZodTypeAny, { url: string; timeoutMs: number; waitUntil: "load" | "domcontentloaded" | "networkidle"; viewport?: { width: number; height: number; } | undefined; userAgent?: string | undefined; persistSessionKey?: string | undefined; extraHeaders?: Record | undefined; proxy?: string | undefined; }, { url: string; viewport?: { width?: number | undefined; height?: number | undefined; } | undefined; userAgent?: string | undefined; timeoutMs?: number | undefined; persistSessionKey?: string | undefined; extraHeaders?: Record | undefined; proxy?: string | undefined; waitUntil?: "load" | "domcontentloaded" | "networkidle" | undefined; }>; export type NavigateOpenInput = z.infer; export declare const NavigateOpenOutputSchema: z.ZodObject<{ status: z.ZodLiteral<"ok">; pageId: z.ZodString; finalUrl: z.ZodString; cookiesStored: z.ZodBoolean; }, "strip", z.ZodTypeAny, { status: "ok"; pageId: string; finalUrl: string; cookiesStored: boolean; }, { status: "ok"; pageId: string; finalUrl: string; cookiesStored: boolean; }>; export type NavigateOpenOutput = z.infer; export declare const NavigateGotoInputSchema: z.ZodObject<{ pageId: z.ZodString; url: z.ZodString; timeoutMs: z.ZodDefault; waitUntil: z.ZodDefault>; }, "strip", z.ZodTypeAny, { url: string; pageId: string; timeoutMs: number; waitUntil: "load" | "domcontentloaded" | "networkidle"; }, { url: string; pageId: string; timeoutMs?: number | undefined; waitUntil?: "load" | "domcontentloaded" | "networkidle" | undefined; }>; export type NavigateGotoInput = z.infer; export declare const NavigateGotoOutputSchema: z.ZodObject<{ status: z.ZodLiteral<"ok">; finalUrl: z.ZodString; cookiesStored: z.ZodBoolean; }, "strip", z.ZodTypeAny, { status: "ok"; finalUrl: string; cookiesStored: boolean; }, { status: "ok"; finalUrl: string; cookiesStored: boolean; }>; export type NavigateGotoOutput = z.infer; //# sourceMappingURL=navigation.d.ts.map