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