import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { Asset, Asset$Outbound } from "./asset.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type OrderActivityMatchSide = { /** * Blockchain address in Union format `${blockchainGroup}:${token}` */ maker: string; hash?: string | undefined; asset: Asset; }; /** @internal */ export declare const OrderActivityMatchSide$inboundSchema: z.ZodType; /** @internal */ export type OrderActivityMatchSide$Outbound = { maker: string; hash?: string | undefined; asset: Asset$Outbound; }; /** @internal */ export declare const OrderActivityMatchSide$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 OrderActivityMatchSide$ { /** @deprecated use `OrderActivityMatchSide$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `OrderActivityMatchSide$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `OrderActivityMatchSide$Outbound` instead. */ type Outbound = OrderActivityMatchSide$Outbound; } export declare function orderActivityMatchSideToJSON(orderActivityMatchSide: OrderActivityMatchSide): string; export declare function orderActivityMatchSideFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=orderactivitymatchside.d.ts.map