import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { FindAction, FindAction$Outbound } from "./findaction.js"; import { OpenPageAction, OpenPageAction$Outbound } from "./openpageaction.js"; import { SearchAction, SearchAction$Outbound } from "./searchaction.js"; export type WebSearchAction = SearchAction | OpenPageAction | FindAction; /** @internal */ export declare const WebSearchAction$inboundSchema: z.ZodType; /** @internal */ export type WebSearchAction$Outbound = SearchAction$Outbound | OpenPageAction$Outbound | FindAction$Outbound; /** @internal */ export declare const WebSearchAction$outboundSchema: z.ZodType; export declare function webSearchActionToJSON(webSearchAction: WebSearchAction): string; export declare function webSearchActionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=websearchaction.d.ts.map