import { TransactionRequest } from '../../TransactionRequest';
export interface TronContractCallInput {
    type: string;
    value: string;
}
export declare class TronContractCallExecutionRequest extends TransactionRequest {
    value: number;
    to: string;
    functionName: string;
    inputs: TronContractCallInput[];
}
