/** * Conditional Expression Operators: https://docs.mongodb.com/manual/reference/operator/aggregation/#conditional-expression-operators */ import { Options } from '../../../core'; /** * An operator that evaluates a series of case expressions. When it finds an expression which * evaluates to true, it returns the resulting expression for that case. If none of the cases * evaluate to true, it returns the default expression. * * @param obj * @param expr */ export declare function $switch(obj: object, expr: any, options: Options): any;