import type { AppPlugin } from '../Plugin'; declare module '../Def' { interface AppPluginOptions { keepAlive?: KeepAlive; } interface LifecycleFns { suspend?: LifecycleFn | Array>; resume?: LifecycleFn | Array>; } } export declare function createAttachDOMPlugin(rootDOM: Element | string): AppPlugin;