import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import * as models from "../index.js"; export declare const ListApiV1LedgersGetSortBy: { readonly LedgerCanisterId: "ledger_canister_id"; readonly MinusLedgerCanisterId: "-ledger_canister_id"; readonly Icrc1Name: "icrc1_name"; readonly MinusIcrc1Name: "-icrc1_name"; readonly Icrc1Symbol: "icrc1_symbol"; readonly MinusIcrc1Symbol: "-icrc1_symbol"; }; export type ListApiV1LedgersGetSortBy = ClosedEnum; export type ListApiV1LedgersGetRequest = { tokenTypes?: Array | undefined; offset?: number | undefined; limit?: number | undefined; maxIndex?: number | undefined; sortBy?: Array | undefined; }; /** @internal */ export declare const ListApiV1LedgersGetSortBy$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ListApiV1LedgersGetSortBy$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ListApiV1LedgersGetSortBy$ { /** @deprecated use `ListApiV1LedgersGetSortBy$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly LedgerCanisterId: "ledger_canister_id"; readonly MinusLedgerCanisterId: "-ledger_canister_id"; readonly Icrc1Name: "icrc1_name"; readonly MinusIcrc1Name: "-icrc1_name"; readonly Icrc1Symbol: "icrc1_symbol"; readonly MinusIcrc1Symbol: "-icrc1_symbol"; }>; /** @deprecated use `ListApiV1LedgersGetSortBy$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly LedgerCanisterId: "ledger_canister_id"; readonly MinusLedgerCanisterId: "-ledger_canister_id"; readonly Icrc1Name: "icrc1_name"; readonly MinusIcrc1Name: "-icrc1_name"; readonly Icrc1Symbol: "icrc1_symbol"; readonly MinusIcrc1Symbol: "-icrc1_symbol"; }>; } /** @internal */ export declare const ListApiV1LedgersGetRequest$inboundSchema: z.ZodType; /** @internal */ export type ListApiV1LedgersGetRequest$Outbound = { token_types?: Array | undefined; offset: number; limit: number; max_index?: number | undefined; sort_by?: Array | undefined; }; /** @internal */ export declare const ListApiV1LedgersGetRequest$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 ListApiV1LedgersGetRequest$ { /** @deprecated use `ListApiV1LedgersGetRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ListApiV1LedgersGetRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ListApiV1LedgersGetRequest$Outbound` instead. */ type Outbound = ListApiV1LedgersGetRequest$Outbound; } export declare function listApiV1LedgersGetRequestToJSON(listApiV1LedgersGetRequest: ListApiV1LedgersGetRequest): string; export declare function listApiV1LedgersGetRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listapiv1ledgersget.d.ts.map