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