import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type FindAction = { type: "find"; pattern: string; url: string; }; /** @internal */ export declare const FindAction$inboundSchema: z.ZodType; /** @internal */ export type FindAction$Outbound = { type: "find"; pattern: string; url: string; }; /** @internal */ export declare const FindAction$outboundSchema: z.ZodType; export declare function findActionToJSON(findAction: FindAction): string; export declare function findActionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=findaction.d.ts.map