import { Options } from '../../core'; import { Iterator } from '../../lazy'; /** * Restricts the contents of the documents based on information stored in the documents themselves. * * https://docs.mongodb.com/manual/reference/operator/aggregation/redact/ */ export declare function $redact(collection: Iterator, expr: any, options: Options): Iterator;