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