import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type WebhookDataWalletCreated = { accountID: string; walletID: string; }; /** @internal */ export declare const WebhookDataWalletCreated$inboundSchema: z.ZodType; /** @internal */ export type WebhookDataWalletCreated$Outbound = { accountID: string; walletID: string; }; /** @internal */ export declare const WebhookDataWalletCreated$outboundSchema: z.ZodType; export declare function webhookDataWalletCreatedToJSON(webhookDataWalletCreated: WebhookDataWalletCreated): string; export declare function webhookDataWalletCreatedFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookdatawalletcreated.d.ts.map