import { Path } from './types.js'; /** * Stringify an array with a path in a JSON path like 'items[3].name' * Note that we allow all characters in a property name, like 'item with spaces[3].name' * Property names containing a special character like a dot . are escaped inside a string * like 'object.["prop with ."]'. * Double quotes inside a string are escaped by a backslash character, * like 'object.["prop with \" double quotes"]' */ export declare function stringifyPath(path: Path): string; /** * Parse a JSON path like 'items[3].name' into a Path. * See also function `stringifyPath`. */ export declare function parsePath(pathStr: string): Path; //# sourceMappingURL=path.d.ts.map