/** * Copyright 2022 Gravwell, Inc. All rights reserved. * * Contact: [legal@gravwell.io](mailto:legal@gravwell.io) * * This software may be modified and distributed under the terms of the MIT * license. See the LICENSE file for details. */ import { RawElementFilterOperation } from './element-filter-operation'; export interface RawDataExplorerEntry { Elements: Array | null; Tag: string; } export declare const isRawDataExplorerEntry: (v: unknown) => v is RawDataExplorerEntry; /** * An Element is an item which has been extracted from an entry using the data * exploration system. */ export interface RawDataExplorerElement { Module?: string | undefined; Name: string; Path: string; Args?: string | undefined; Value: string | number | boolean | null; SubElements?: Array; Filters: Array | null; }