import { RenderPluginFactory, SolidJSRenderPluginInstance } from '../api/plugin-types'; interface DummyPluginMetadata { type: 'dummy'; fieldName: string; } type DummyPluginInstance = SolidJSRenderPluginInstance; export declare const DummyPluginFactory: RenderPluginFactory; export {};