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"; /** * An enumeration. */ export declare const ListChainKeyTransactionCountApiV2TransactionCountGetStep: { readonly EightySixThousandFourHundred: 86400; readonly ThreeThousandSixHundred: 3600; }; /** * An enumeration. */ export type ListChainKeyTransactionCountApiV2TransactionCountGetStep = ClosedEnum; export type ListChainKeyTransactionCountApiV2TransactionCountGetRequest = { start?: number | undefined; end?: number | undefined; /** * An enumeration. */ step?: ListChainKeyTransactionCountApiV2TransactionCountGetStep | undefined; /** * An enumeration. */ network?: models.Network | undefined; /** * An enumeration. */ tokenType?: models.AppModelsLedgersTokenType | undefined; }; /** @internal */ export declare const ListChainKeyTransactionCountApiV2TransactionCountGetStep$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ListChainKeyTransactionCountApiV2TransactionCountGetStep$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 ListChainKeyTransactionCountApiV2TransactionCountGetStep$ { /** @deprecated use `ListChainKeyTransactionCountApiV2TransactionCountGetStep$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly EightySixThousandFourHundred: 86400; readonly ThreeThousandSixHundred: 3600; }>; /** @deprecated use `ListChainKeyTransactionCountApiV2TransactionCountGetStep$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly EightySixThousandFourHundred: 86400; readonly ThreeThousandSixHundred: 3600; }>; } /** @internal */ export declare const ListChainKeyTransactionCountApiV2TransactionCountGetRequest$inboundSchema: z.ZodType; /** @internal */ export type ListChainKeyTransactionCountApiV2TransactionCountGetRequest$Outbound = { start?: number | undefined; end?: number | undefined; step: number; network?: string | undefined; token_type?: string | undefined; }; /** @internal */ export declare const ListChainKeyTransactionCountApiV2TransactionCountGetRequest$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 ListChainKeyTransactionCountApiV2TransactionCountGetRequest$ { /** @deprecated use `ListChainKeyTransactionCountApiV2TransactionCountGetRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ListChainKeyTransactionCountApiV2TransactionCountGetRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ListChainKeyTransactionCountApiV2TransactionCountGetRequest$Outbound` instead. */ type Outbound = ListChainKeyTransactionCountApiV2TransactionCountGetRequest$Outbound; } export declare function listChainKeyTransactionCountApiV2TransactionCountGetRequestToJSON(listChainKeyTransactionCountApiV2TransactionCountGetRequest: ListChainKeyTransactionCountApiV2TransactionCountGetRequest): string; export declare function listChainKeyTransactionCountApiV2TransactionCountGetRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listchainkeytransactioncountapiv2transactioncountget.d.ts.map