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