/** * AJV does some encoding to schema and instance paths. Revert those encodings to * easier to read and parse values. * See https://github.com/ajv-validator/ajv/blob/master/lib/compile/util.ts#L69. * * @param path Path from AJV. * @returns Updated path with correct characters. */ export declare function normalizeAjvPath(path: string): string;