import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type Balance = { /** * Currency Id, has format `ETHEREUM:${token}` or `ETHEREUM:${token}:${tokenId}` */ currencyId: string; /** * Blockchain address in Union format `${blockchainGroup}:${token}` */ owner: string; balance: string; decimal: string; }; /** @internal */ export declare const Balance$inboundSchema: z.ZodType; /** @internal */ export type Balance$Outbound = { currencyId: string; owner: string; balance: string; decimal: string; }; /** @internal */ export declare const Balance$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 Balance$ { /** @deprecated use `Balance$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Balance$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Balance$Outbound` instead. */ type Outbound = Balance$Outbound; } export declare function balanceToJSON(balance: Balance): string; export declare function balanceFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=balance.d.ts.map