/**
 * Returns a function that gets a property of the passed object
 */
declare function prop(name: any): (obj: any) => any;
export default prop;
