import { type BuildApp } from "../../../abstractions/index.js"; export interface IBeforeBuild { execute(params: BuildApp.Params): void | Promise; } export declare const BeforeBuild: import("@webiny/di").Abstraction; export declare namespace BeforeBuild { type Interface = IBeforeBuild; type Params = BuildApp.Params; }