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