import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { AlertState } from "./alert-state.js"; import { AlertType } from "./alert-type.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { WebhookEventName } from "./webhook-event-name.js"; export type WebhookDtoAlertWebhookPayload = { alertStatus?: AlertState | undefined; alertType?: AlertType | undefined; creditBalance?: string | undefined; currentBalance?: string | undefined; customerId?: string | undefined; eventType?: WebhookEventName | undefined; featureId?: string | undefined; walletId?: string | undefined; }; /** @internal */ export declare const WebhookDtoAlertWebhookPayload$inboundSchema: z.ZodMiniType; export declare function webhookDtoAlertWebhookPayloadFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhook-dto-alert-webhook-payload.d.ts.map