import { EthTransactionAsync } from "./eth-transaction-async";
import { IAsyncRequestStatus } from "./interfaces/common";
import { Request } from "./request";
/**
 * Provides the ability to query the status of asynchronously executed Ethereum transactions.
 */
export declare class EthTransactionRequest extends Request<EthTransactionAsync> {
    get(): Promise<IAsyncRequestStatus<EthTransactionAsync>>;
}
