/** * Returns if the target is a "child" of the tree of the given "parent" node. * * @param child Target node. * @param parent Parent node. * @returns */ export declare function isChildOfParent(child: object, parent: object): boolean;