import { PluginItem } from '@babel/core'; import { ParserPlugin } from '@babel/parser'; import Transformer from './Transformer'; export declare class InlineTransformer implements Transformer { private readonly plugins; private readonly parserPlugins; constructor(plugins: Iterable, parserPlugins?: Iterable); transform(filepath: string, content: string): Promise; }