import { JsonNode } from '../types'; /** * returns child item or property if found */ export declare function getChildNode(node: JsonNode, property: string): JsonNode | undefined; /** * @returns index of child node identified by property or -1 */ export declare function getChildIndex(node: JsonNode, property: string): number;