import { In, Out } from "../_interfaces"; export declare type EndProjection = T | (() => T); export declare const mapEnd: CurriedMapEnd; export interface CurriedMapEnd { (f: EndProjection, observable: In): Out; (f: EndProjection): (observable: In) => Out; }