import { Observable } from 'rxjs'; import { PluginPriority } from '../plugin'; import { PropertyPlugin, AppendPlugin } from '../basic-plugins'; export declare class ObservablePlugin implements PropertyPlugin, T>, AppendPlugin, T> { priority: PluginPriority; setprop(prop: string, target: RawValue | R | Observable, host: HTMLElement): boolean; append(target: RawValue | R | Observable | Node | (RawValue | R | Observable | Node)[], host: Node): boolean; }