import { IEthereumTransaction } from "./interfaces/ethereum";
import { Waas } from "./waas";
import { IWaasMethod } from "./waas-method";
export declare class EthTransaction implements IWaasMethod {
    waas: Waas;
    private readonly _hash;
    get hash(): string;
    constructor(waas: Waas, _hash: string);
    /**
     * Requests details for the given transaction hash.
     * @see [docs]{@link https://docs.tangany.com/#7b314b47-012c-4baa-b928-dd32c7db1e41}
     */
    get(): Promise<IEthereumTransaction>;
}
