import { Iterator } from "../../lazy";
import { Options } from "../../types";
/**
 * Skips the first n documents where n is the specified skip number and passes the remaining documents unmodified to the pipeline.
 *
 * See {@link https://www.mongodb.com/docs/manual/reference/operator/aggregation/skip usage}.
 */
export declare function $skip(coll: Iterator, expr: number, _options: Options): Iterator;
