import { PipelineOperator } from "../../core";
/**
 * Filters the document stream to allow only matching documents to pass unmodified into the next pipeline stage.
 *
 * See {@link https://www.mongodb.com/docs/manual/reference/operator/aggregation/match usage}.
 *
 * @param collection
 * @param expr
 * @param options
 * @returns
 */
export declare const $match: PipelineOperator;
