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