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