import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { EventBody } from "./eventbody.js"; export type WebhookResultDto = { /** * Unique identifier for the webhook result */ id: string; /** * Event body containing the webhook event data */ event: EventBody; }; /** @internal */ export declare const WebhookResultDto$inboundSchema: z.ZodType; export declare function webhookResultDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookresultdto.d.ts.map