import * as t from '@babel/types'; import { NodePath } from '@babel/traverse'; interface Options { test: (file: string) => boolean; } declare const _default: (options: Options) => { pre(state: any): void; visitor: { StringLiteral: (path: NodePath, state: any) => void; Identifier: (path: NodePath, state: any) => void; }; }; export default _default;