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