import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { AppSchemasV2LedgersLedger, AppSchemasV2LedgersLedger$Outbound } from "./appschemasv2ledgersledger.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type AppSchemasV2LedgersLedgerList = { data: Array; nextCursor?: string | undefined; previousCursor?: string | undefined; }; /** @internal */ export declare const AppSchemasV2LedgersLedgerList$inboundSchema: z.ZodType; /** @internal */ export type AppSchemasV2LedgersLedgerList$Outbound = { data: Array; next_cursor?: string | undefined; previous_cursor?: string | undefined; }; /** @internal */ export declare const AppSchemasV2LedgersLedgerList$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 AppSchemasV2LedgersLedgerList$ { /** @deprecated use `AppSchemasV2LedgersLedgerList$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AppSchemasV2LedgersLedgerList$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AppSchemasV2LedgersLedgerList$Outbound` instead. */ type Outbound = AppSchemasV2LedgersLedgerList$Outbound; } export declare function appSchemasV2LedgersLedgerListToJSON(appSchemasV2LedgersLedgerList: AppSchemasV2LedgersLedgerList): string; export declare function appSchemasV2LedgersLedgerListFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=appschemasv2ledgersledgerlist.d.ts.map