import ts from "typescript"; export declare class CompilerService { private readonly ctx; private readonly tsconfigService; private readonly configService; private readonly pluginInterfaceService; private get config(); get sourceMap(): boolean | undefined; getHooks(program: ts.Program): { before: import("..").Transformer[]; after: import("..").Transformer[]; afterDeclarations: import("..").Transformer[]; }; compile(outDir: string): boolean; getDefaultCompilerOptions(outDir: string): ts.CompilerOptions; private getCompilerOptions; private reportAfterCompilationDiagnostic; }