import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { Royalty, Royalty$Outbound } from "./royalty.js"; export type Royalties = { royalties: Array; }; /** @internal */ export declare const Royalties$inboundSchema: z.ZodType; /** @internal */ export type Royalties$Outbound = { royalties: Array; }; /** @internal */ export declare const Royalties$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 Royalties$ { /** @deprecated use `Royalties$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Royalties$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Royalties$Outbound` instead. */ type Outbound = Royalties$Outbound; } export declare function royaltiesToJSON(royalties: Royalties): string; export declare function royaltiesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=royalties.d.ts.map