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