export declare const Cond: (booleanExpression: any, trueCase: any, falseCase: any) => { $cond: any[]; }; export declare const IfNull: (value: any, replaceWith: any) => { $ifNull: any[]; }; export declare const Switch: (branchList: { branchCase: any; thenDo: any; }[], defaultCase: any) => { $switch: { branches: { branchCase: any; thenDo: any; }[]; default: any; }; };