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