import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { AppSchemasLedgersLedger, AppSchemasLedgersLedger$Outbound } from "./appschemasledgersledger.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type AppSchemasLedgersLedgerList = { data: Array; maxIndex: number; totalLedgers: number; }; /** @internal */ export declare const AppSchemasLedgersLedgerList$inboundSchema: z.ZodType; /** @internal */ export type AppSchemasLedgersLedgerList$Outbound = { data: Array; max_index: number; total_ledgers: number; }; /** @internal */ export declare const AppSchemasLedgersLedgerList$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 AppSchemasLedgersLedgerList$ { /** @deprecated use `AppSchemasLedgersLedgerList$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AppSchemasLedgersLedgerList$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AppSchemasLedgersLedgerList$Outbound` instead. */ type Outbound = AppSchemasLedgersLedgerList$Outbound; } export declare function appSchemasLedgersLedgerListToJSON(appSchemasLedgersLedgerList: AppSchemasLedgersLedgerList): string; export declare function appSchemasLedgersLedgerListFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=appschemasledgersledgerlist.d.ts.map