import type { UnknownObject } from '../../helpers/general.js'; /** * Recursively resolves the value behind a $ref pointer within the current document tree. * For example, given a node with { $ref: '#/some/path' }, this will locate and return * the referenced node, following the $ref chain if necessary. * * @param node - The node that may be a $ref object. If not, returns the node as is. * @returns The resolved node if a $ref chain exists, otherwise the original node. */ export declare const getResolvedRef: (node: unknown, context: { rootNode: UnknownObject; }) => unknown; //# sourceMappingURL=helpers.d.ts.map