import { PluginArgs, PluginCreateApi, PluginSpec } from 'ui-plugin'; import { PlugComponentType } from './types'; interface CreateApi extends PluginCreateApi { plug( slotName: string, component: PlugComponentType, ): void; namedPlug( slotName: string, plugName: string, component: PlugComponentType, ): void; } export declare function createPlugin( args: PluginArgs, ): CreateApi; export {};