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