import { IPlugin, ISlot } from '@miniu/types'; export declare const name = "ui"; export interface IUIEJSSlot extends ISlot { name: 'ui.ejs'; value: () => { [path: string]: { filename: string; value?: object | (() => object); }; }; } declare const plugin: IPlugin; export default plugin;