import { CompilerHook, Postbuild, Prebuild } from "../../configuration"; import ts from "typescript"; import { Configuration, ConfigEnv } from "../../configuration"; export declare class PluginInterfaceService { private readonly depsService; get(name: "cliConfigHook"): ((config: Configuration, options: ConfigEnv) => Configuration | void)[]; get(name: "postbuild"): Postbuild[]; get(name: "prebuild"): Prebuild[]; get(name: "beforeCompile"): CompilerHook[]; get(name: "afterCompile"): CompilerHook[]; get(name: "afterCompileDeclarations"): CompilerHook[]; }