import { RenderPluginFactory, DOMRenderPluginInstance } from '../api/plugin-types'; interface DummyDOMPluginMetadata { type: 'dummy_dom'; fieldName: string; } type DummyDOMPluginInstance = DOMRenderPluginInstance; export declare const DummyDOMPluginFactory: RenderPluginFactory; export {};