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