import { Observable } from "rxjs"; import { Match } from "../match"; import { SubscriptionRef } from "../subscription-ref"; import { BasePlugin } from "./plugin"; export declare class LetPlugin extends BasePlugin { private match_; private select_; constructor(match: Match, select: (source: Observable) => Observable, { complete }?: { complete?: boolean; }); select(ref: SubscriptionRef): ((source: Observable) => Observable) | undefined; }