import type { QueryInfo } from "../../types"; import { transaction } from "./transaction"; export type ArweaveTransactions = typeof transaction; export declare const transactionsVars: ArweaveTransactionsVars; export type ArweaveTransactionsVars = { ids?: string[]; from?: string[]; to?: string[]; tags?: { name: string; values: string[]; }[]; bundledIn?: string[]; minHeight?: number; maxHeight?: number; pageSize?: number; after?: string; sort?: "ASC" | "DESC"; }; export declare const arweaveTransactionsQuery: QueryInfo;