import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type EthCollectionTokenIdSignature = { v: number; r: string; s: string; }; /** @internal */ export declare const EthCollectionTokenIdSignature$inboundSchema: z.ZodType; /** @internal */ export type EthCollectionTokenIdSignature$Outbound = { v: number; r: string; s: string; }; /** @internal */ export declare const EthCollectionTokenIdSignature$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 EthCollectionTokenIdSignature$ { /** @deprecated use `EthCollectionTokenIdSignature$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EthCollectionTokenIdSignature$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EthCollectionTokenIdSignature$Outbound` instead. */ type Outbound = EthCollectionTokenIdSignature$Outbound; } export declare function ethCollectionTokenIdSignatureToJSON(ethCollectionTokenIdSignature: EthCollectionTokenIdSignature): string; export declare function ethCollectionTokenIdSignatureFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ethcollectiontokenidsignature.d.ts.map