/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import type { DepOptimizationConfig, Rolldown } from 'vite'; import { CompilerPluginOptions } from './utils/devkit.js'; type EsbuildOptions = NonNullable; type EsbuildPlugin = NonNullable[number]; export declare function createCompilerPlugin(pluginOptions: CompilerPluginOptions, isTest: boolean, closeTransformer: boolean): EsbuildPlugin; export declare function createRolldownCompilerPlugin(pluginOptions: CompilerPluginOptions): Rolldown.Plugin; export {};