export interface VechainContractCallInput {
    type: string;
    value: string;
}
export declare class VechainExecutableContractCall {
    to: string;
    amount: number;
    functionName: string;
    inputs: VechainContractCallInput[];
}
