import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type AppSchemasTransactionCountListTransactionCountMeta = { totalTransactionsForDataset?: string | undefined; totalTransactionsForAllTime?: string | undefined; }; /** @internal */ export declare const AppSchemasTransactionCountListTransactionCountMeta$inboundSchema: z.ZodType; /** @internal */ export type AppSchemasTransactionCountListTransactionCountMeta$Outbound = { total_transactions_for_dataset?: string | undefined; total_transactions_for_all_time?: string | undefined; }; /** @internal */ export declare const AppSchemasTransactionCountListTransactionCountMeta$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 AppSchemasTransactionCountListTransactionCountMeta$ { /** @deprecated use `AppSchemasTransactionCountListTransactionCountMeta$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AppSchemasTransactionCountListTransactionCountMeta$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AppSchemasTransactionCountListTransactionCountMeta$Outbound` instead. */ type Outbound = AppSchemasTransactionCountListTransactionCountMeta$Outbound; } export declare function appSchemasTransactionCountListTransactionCountMetaToJSON(appSchemasTransactionCountListTransactionCountMeta: AppSchemasTransactionCountListTransactionCountMeta): string; export declare function appSchemasTransactionCountListTransactionCountMetaFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=appschemastransactioncountlisttransactioncountmeta.d.ts.map