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