import { z } from "zod"; export declare const BrowserAutomationProviderSchema: z.ZodEnum<{ playwright: "playwright"; "agent-browser": "agent-browser"; "dev-browser": "dev-browser"; "playwright-cli": "playwright-cli"; }>; export declare const BrowserAutomationConfigSchema: z.ZodObject<{ provider: z.ZodDefault>; }, z.core.$strip>; export type BrowserAutomationProvider = z.infer; export type BrowserAutomationConfig = z.infer;