import { UpdateOptions } from "../../core";
import { AnyObject } from "../../types";
/** Performs a bitwise update of a field. The operator supports AND, OR, and XOR.*/
export declare const $bit: (obj: AnyObject, expr: AnyObject, arrayFilters?: AnyObject[], options?: UpdateOptions) => string[];
