import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { AlertSettings } from "./alert-settings.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type WebhookDtoWalletAlertInfo = { alertSettings?: AlertSettings | undefined; alertType?: string | undefined; creditBalance?: number | undefined; currentBalance?: number | undefined; state?: string | undefined; }; /** @internal */ export declare const WebhookDtoWalletAlertInfo$inboundSchema: z.ZodMiniType; export declare function webhookDtoWalletAlertInfoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhook-dto-wallet-alert-info.d.ts.map