import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { PaginationResponse } from "./pagination-response.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { WalletTransactionResponse } from "./wallet-transaction-response.js"; export type ListWalletTransactionsResponse = { items?: Array | undefined; pagination?: PaginationResponse | undefined; }; /** @internal */ export declare const ListWalletTransactionsResponse$inboundSchema: z.ZodMiniType; export declare function listWalletTransactionsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=list-wallet-transactions-response.d.ts.map