import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type WebhookDtoRejectedEventData = { customerId?: string | undefined; eventName?: string | undefined; externalCustomerId?: string | undefined; id?: string | undefined; properties?: { [k: string]: any; } | undefined; source?: string | undefined; timestamp?: string | undefined; }; /** @internal */ export declare const WebhookDtoRejectedEventData$inboundSchema: z.ZodMiniType; export declare function webhookDtoRejectedEventDataFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhook-dto-rejected-event-data.d.ts.map