import { AnyObject, Options, Predicate } from "../../../types";
/**
 * Joins query clauses with a logical AND returns all documents that match the conditions of both clauses.
 *
 * @param selector
 * @param rhs
 * @returns {Function}
 */
export declare const $and: (_: string, rhs: AnyObject[], options: Options) => Predicate<AnyObject>;
