import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; export declare const SyncType: { readonly Order: "ORDER"; readonly Nft: "NFT"; }; export type SyncType = ClosedEnum; /** @internal */ export declare const SyncType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const SyncType$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace SyncType$ { /** @deprecated use `SyncType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Order: "ORDER"; readonly Nft: "NFT"; }>; /** @deprecated use `SyncType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Order: "ORDER"; readonly Nft: "NFT"; }>; } //# sourceMappingURL=synctype.d.ts.map