import { Operand, Position, Predicate, PredicateOperator } from '../types'; export declare const predicate: (operator: PredicateOperator, operand?: Operand) => Predicate; export declare const predicateInternal: (operator: PredicateOperator, operand: Operand | void, position?: Position | null) => Predicate;