import { PluginConfig } from "..";
declare const namespace = "plugins";
declare module ".." {
    interface ActionheroConfigInterface {
        [namespace]: ReturnType<(typeof DEFAULT)[typeof namespace]>;
    }
}
export declare const DEFAULT: {
    [namespace]: () => PluginConfig;
};
export {};
