import { Predicate } from './predicate';
import { Query } from '../query/query';
/**
 * The simples type of `Predicate`. Represents a leaf node in the predicate tree.
 */
export declare class ElementaryPredicate extends Predicate {
    protected _query: Query;
    constructor(_query: Query, initiallyVisible?: boolean);
    get query(): Query;
}
