import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; /** * @deprecated class: This will be removed in a future release, please migrate away from it as soon as possible. */ export type ActivityBlockchainInfo = { transactionHash: string; blockHash: string; blockNumber: number; logIndex: number; }; /** @internal */ export declare const ActivityBlockchainInfo$inboundSchema: z.ZodType; /** @internal */ export type ActivityBlockchainInfo$Outbound = { transactionHash: string; blockHash: string; blockNumber: number; logIndex: number; }; /** @internal */ export declare const ActivityBlockchainInfo$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ActivityBlockchainInfo$ { /** @deprecated use `ActivityBlockchainInfo$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ActivityBlockchainInfo$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ActivityBlockchainInfo$Outbound` instead. */ type Outbound = ActivityBlockchainInfo$Outbound; } export declare function activityBlockchainInfoToJSON(activityBlockchainInfo: ActivityBlockchainInfo): string; export declare function activityBlockchainInfoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=activityblockchaininfo.d.ts.map