import { TransactionRequest } from '../../TransactionRequest';
export interface EthereumContractCallInput {
    type: string;
    value: string;
}
export declare class EthereumContractCallExecutionRequest extends TransactionRequest {
    gasPrice?: number;
    gas?: number;
    nonce?: number;
    to: string;
    value: number;
    functionName: string;
    inputs: EthereumContractCallInput[];
}
