import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; export declare const ActivityType: { readonly Transfer: "TRANSFER"; readonly Mint: "MINT"; readonly Burn: "BURN"; readonly Bid: "BID"; readonly List: "LIST"; readonly Sell: "SELL"; readonly CancelList: "CANCEL_LIST"; readonly CancelBid: "CANCEL_BID"; readonly BridgeTo: "BRIDGE_TO"; readonly BridgeFrom: "BRIDGE_FROM"; }; export type ActivityType = ClosedEnum; /** @internal */ export declare const ActivityType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ActivityType$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 ActivityType$ { /** @deprecated use `ActivityType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Transfer: "TRANSFER"; readonly Mint: "MINT"; readonly Burn: "BURN"; readonly Bid: "BID"; readonly List: "LIST"; readonly Sell: "SELL"; readonly CancelList: "CANCEL_LIST"; readonly CancelBid: "CANCEL_BID"; readonly BridgeTo: "BRIDGE_TO"; readonly BridgeFrom: "BRIDGE_FROM"; }>; /** @deprecated use `ActivityType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Transfer: "TRANSFER"; readonly Mint: "MINT"; readonly Burn: "BURN"; readonly Bid: "BID"; readonly List: "LIST"; readonly Sell: "SELL"; readonly CancelList: "CANCEL_LIST"; readonly CancelBid: "CANCEL_BID"; readonly BridgeTo: "BRIDGE_TO"; readonly BridgeFrom: "BRIDGE_FROM"; }>; } //# sourceMappingURL=activitytype.d.ts.map