export type JSONSegmentPathType = string | number export type JSONPathType = Array export type JSONSegmentPathBufferType = Uint8Array | number export type JSONPathBufferType = Array export type JSONSegmentPathOrJSONSegmentPathBufferType = | JSONSegmentPathType | JSONSegmentPathBufferType export type JSONPathOrJSONPathBufferType = JSONPathType | JSONPathBufferType export type JSONValueType = string | number | boolean | null | [] | {} export type JSONPathValueType = [JSONPathType, JSONValueType] //# sourceMappingURL=baseTypes.d.ts.map