/**
 * Inherit prototype from another Object.
 * - inspired by Nicholas Zackas <http://nczonline.net> Solution
 * @param {object} child Child object
 * @param {object} parent    Parent Object
 */
declare function inheritPrototype(child: any, parent: any): any;
export default inheritPrototype;
