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