import type { JSONPointer } from '@criteria/json-pointer'; export declare function isJSONReference(value: any): value is { $ref: string; }; export declare function visitJSONReferences(value: any, initialState: State, visitor: (reference: { $ref: string; }, location: JSONPointer, state: State) => boolean | void): void;