import { ObjectASTNode, PropertyASTNode } from "./json"; export declare const findProperty: (objectNode: ObjectASTNode | void, predicate: (node: PropertyASTNode) => boolean) => PropertyASTNode | void; export declare const getPropertyNodeValue: (propertyNode: PropertyASTNode | void, location: string) => ObjectASTNode | void;