declare const namespace = "plugins"; declare const pluginManifestNamespace = "pluginManifest"; declare module "actionhero" { interface ActionheroConfigInterface { [namespace]: ReturnType; } interface ActionheroConfigInterface { [pluginManifestNamespace]: ReturnType; } } export declare const DEFAULT: { plugins: () => { "ah-sequelize-plugin": { path: string; }; } & Record & Record; pluginManifest: () => { url: string; }; }; export {};