import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import * as models from "../index.js"; export type CountLedgersApiV2LedgersCountGetRequest = { network?: Array | undefined; tokenTypes?: Array | undefined; /** * Search for a ledger by name or symbol */ query?: string | undefined; }; /** @internal */ export declare const CountLedgersApiV2LedgersCountGetRequest$inboundSchema: z.ZodType; /** @internal */ export type CountLedgersApiV2LedgersCountGetRequest$Outbound = { network?: Array | undefined; token_types?: Array | undefined; query?: string | undefined; }; /** @internal */ export declare const CountLedgersApiV2LedgersCountGetRequest$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 CountLedgersApiV2LedgersCountGetRequest$ { /** @deprecated use `CountLedgersApiV2LedgersCountGetRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CountLedgersApiV2LedgersCountGetRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CountLedgersApiV2LedgersCountGetRequest$Outbound` instead. */ type Outbound = CountLedgersApiV2LedgersCountGetRequest$Outbound; } export declare function countLedgersApiV2LedgersCountGetRequestToJSON(countLedgersApiV2LedgersCountGetRequest: CountLedgersApiV2LedgersCountGetRequest): string; export declare function countLedgersApiV2LedgersCountGetRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=countledgersapiv2ledgerscountget.d.ts.map