import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ResetItemMetaRequest = { /** * Item Id in format `ETHEREUM:${token}:${tokenId}` */ itemId: string; /** * Request meta for Item if true */ sync?: boolean | undefined; }; /** @internal */ export declare const ResetItemMetaRequest$inboundSchema: z.ZodType; /** @internal */ export type ResetItemMetaRequest$Outbound = { itemId: string; sync?: boolean | undefined; }; /** @internal */ export declare const ResetItemMetaRequest$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 ResetItemMetaRequest$ { /** @deprecated use `ResetItemMetaRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ResetItemMetaRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ResetItemMetaRequest$Outbound` instead. */ type Outbound = ResetItemMetaRequest$Outbound; } export declare function resetItemMetaRequestToJSON(resetItemMetaRequest: ResetItemMetaRequest): string; export declare function resetItemMetaRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=resetitemmeta.d.ts.map