import { Predicate } from "./predicate.js"; export interface MapIfElse { (object: any, predicate: Predicate, trueUpdates: any, falseUpdates: any): unknown; (predicate: Predicate, trueUpdates: any, falseUpdates: any): (unknown: any) => unknown; } export interface MapIf { (object: any, predicate: Predicate, trueUpdates: any): unknown; (predicate: Predicate, trueUpdates: any): (unknown: any) => unknown; } declare const _default: MapIf; export default _default; export declare const mapIfElse: MapIfElse; //# sourceMappingURL=mapIf.d.ts.map