///
/**
* Use 3rd party coder to decode params as a list of values
*/
export declare const decodeParams: import("ramda").CurriedFunction2;
interface PropertyDefinition {
type: string;
name: string;
}
/**
* Instead of decoding to array as web3 decode to object using abi names
*/
export declare function decodeToObj(deinitions: T[]): (x0: string) => {
[index: string]: any;
};
export {};