import { JSONPathNodeList } from "../node"; import { FilterFunction, FunctionExpressionType } from "./function"; export declare class Value implements FilterFunction { readonly argTypes: FunctionExpressionType[]; readonly returnType = FunctionExpressionType.ValueType; call(nodes: JSONPathNodeList): unknown; }