import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { RFCDate } from "../types/rfcdate.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; /** * schema mapping for AccountBalances Model */ export type TreasuryAccountBalances = { canisterId: string; ledgerCanisterId: string; day: RFCDate; timestamp: string; balance: string; }; /** @internal */ export declare const TreasuryAccountBalances$inboundSchema: z.ZodType; /** @internal */ export type TreasuryAccountBalances$Outbound = { canister_id: string; ledger_canister_id: string; day: string; timestamp: string; balance: string; }; /** @internal */ export declare const TreasuryAccountBalances$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 TreasuryAccountBalances$ { /** @deprecated use `TreasuryAccountBalances$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `TreasuryAccountBalances$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `TreasuryAccountBalances$Outbound` instead. */ type Outbound = TreasuryAccountBalances$Outbound; } export declare function treasuryAccountBalancesToJSON(treasuryAccountBalances: TreasuryAccountBalances): string; export declare function treasuryAccountBalancesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=treasuryaccountbalances.d.ts.map