import { Any, AnyObject, Options } from "../../../types";
interface InputExpr {
    readonly field: string;
    readonly input?: AnyObject;
}
/**
 * Adds, updates, or removes a specified field in a document.
 */
export declare const $getField: (obj: AnyObject, expr: InputExpr | string, options: Options) => Any;
export {};
