/**
 * Returns a function that call a method on the passed object
 */
declare function func(name: any): (obj: any) => any;
export default func;
