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