export type JSONPathSegment = { type: 'arrayIndex'; value: string; } | { type: 'objectKey'; value: string; }; export declare const parseJSONPathSegment: (segment: string) => JSONPathSegment; //# sourceMappingURL=parseJSONPathSegment.d.ts.map