import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { WebhookDtoSubscription } from "./webhook-dto-subscription.js"; import { WebhookEventName } from "./webhook-event-name.js"; export type WebhookDtoSubscriptionWebhookPayload = { eventType?: WebhookEventName | undefined; subscription?: WebhookDtoSubscription | undefined; }; /** @internal */ export declare const WebhookDtoSubscriptionWebhookPayload$inboundSchema: z.ZodMiniType; export declare function webhookDtoSubscriptionWebhookPayloadFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhook-dto-subscription-webhook-payload.d.ts.map