import type Irys from "./irys.js"; import type { TxGqlNode } from "./types.js"; export declare class Transaction { protected irys: Irys; constructor(irys: Irys); getById(id: string): Promise; getByOwner(owner: string): Promise; getByTag(name: string, value: string): Promise; query(parameters: { order?: "desc" | "asc"; ids?: string[]; limit?: number; after?: string; currency?: string; owners?: string[]; hasTags?: boolean; tags?: { name: string; values: string[]; }[]; }): Promise; }