import { Fee } from './Fee';
export declare class SmartContractMethodInvocation {
    contractAddress: string;
    params: any[];
    methodABI: any;
    methodName: string;
    amount?: string;
    fee?: Fee;
    nonce?: number;
    fromPrivateKey?: string;
    caller?: string;
    signatureId?: string;
    index?: number;
}
