import { PropsType } from "../../../shared/types"; import { PluginPriority, PluginHost } from "../plugin"; import { CompType } from "./types"; import { CompProcessPlugin } from "./basic-plugins"; export declare class ContextPlugin | string> implements CompProcessPlugin { prepare(_: CompType, __: PropsType, ___: (RawValue | Renderable | Node)[], extras: { [name: string]: any; }, pluginHost: PluginHost): (node: Node) => void; priority: PluginPriority; }