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