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