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