import { UpdateOptions } from "../../core";
import { AnyObject } from "../../types";
/** Increments a field by a specified value. */
export declare const $inc: (obj: AnyObject, expr: Record<string, number>, arrayFilters?: AnyObject[], options?: UpdateOptions) => string[];
