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