/** * @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 */ declare module 'istanbul-lib-instrument' { export interface Visitor { enter(path: import('@babel/core').NodePath): void; exit(path: import('@babel/core').NodePath): void; } export function programVisitor( types: typeof import('@babel/core').types, filePath?: string, options?: { inputSourceMap?: object | null }, ): Visitor; }