import { Transformable } from '../utils/Transformable'; import type { AppPlugin } from '../Plugin'; declare module '../Def' { interface AppPluginOptionsWithGeneric { lifecycle?: Transformable>; } } export declare function createLifecycleBasePlugin(): AppPlugin;