import type { QueryInfo } from "../../types"; export declare const transaction: { id: string; anchor: string; signature: string; recipient: string; owner: { address: string; key: string; }; fee: { winston: string; ar: string; }; quantity: { winston: string; ar: string; }; data: { size: string; type: string; }; tags: { name: string; value: string; }[]; block: { id: string; timestamp: number; height: number; previous: string; }; bundledIn: { id: string; }; }; export type ArweaveTransaction = typeof transaction; export declare const transactionVars: ArweaveTransactionVars; export type ArweaveTransactionVars = { id?: string; }; export declare const arweaveTransactionQuery: QueryInfo;