/** * Error thrown when a JSON pointer is provided but is not parseable as per the RFC6901 * */ export declare class InvalidJsonPointerRefError implements Error { name: string; message: string; constructor(ref: string, additionalMsg: string); } declare const _default: (ref: string, root: any) => any; export default _default;