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