import { ValueNode, ParentNode, Change, FileNode } from '../../types'; /** * updates or replaces value node * * @param parent - parentNode to 'child' */ export declare function updateValueNode(parent: ParentNode, child: ValueNode | FileNode, value: any): import("json-schema-library").JsonError>> | Change[];