import { ViewPlugin, ViewUpdate, DecorationSet } from "@codemirror/view"; import { PlaceholderThemesType, variablesModel } from "../CodeEditor/interface"; export declare const variablesPlugin: (variables: variablesModel[] | undefined, themes: PlaceholderThemesType, placeholderThemeFiled: string) => ViewPlugin<{ variables: DecorationSet; update(update: ViewUpdate): void; }>;