import { PinLike } from '@connectv/core'; import { PluginPriority } from '../plugin'; import { PropertyPlugin, AppendPlugin } from '../basic-plugins'; export declare class PinPlugin implements PropertyPlugin, AppendPlugin { priority: PluginPriority; setprop(prop: string, target: RawValue | R | PinLike, host: HTMLElement): boolean; append(target: RawValue | R | PinLike | Node | (RawValue | R | PinLike | Node)[], host: Node): boolean; }