import type Irys from "./irys"; import type { TxGqlNode } from "./types"; 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; }