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