import type { QueryInfo } from "../../types"; export declare const transactions: { id: string; receipt: { deadlineHeight: number; signature: string; timestamp: number; version: string; }; tags: { name: string; value: string; }[]; address: string; token: string; signature: string; timestamp: number; }; export type IrysTransactions = typeof transactions; export declare const transactionVars: IrysTransactionVars; export type IrysTransactionVars = { ids?: string[]; after?: string; token?: string; from?: string[]; pageSize?: number; sort?: "ASC" | "DESC"; tags?: { name: string; values: string[]; }[]; fromTimestamp?: Date | number; toTimestamp?: Date | number; }; export declare const irysTransactionsQuery: QueryInfo;