import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type Royalty = { /** * Blockchain address in Union format `${blockchainGroup}:${token}` */ account: string; value: number; }; /** @internal */ export declare const Royalty$inboundSchema: z.ZodType; /** @internal */ export type Royalty$Outbound = { account: string; value: number; }; /** @internal */ export declare const Royalty$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 Royalty$ { /** @deprecated use `Royalty$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Royalty$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Royalty$Outbound` instead. */ type Outbound = Royalty$Outbound; } export declare function royaltyToJSON(royalty: Royalty): string; export declare function royaltyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=royalty.d.ts.map