import ts from 'typescript'; export interface IRemapImportsTransformerOptions { remapTarget(target: string, containingFile: string, sourceFile: ts.SourceFile): string; } /** * Remaps esnext and commonjs imports. */ export declare function createRemapImportsTransformer({ remapTarget, }: IRemapImportsTransformerOptions): ts.TransformerFactory; export declare function remapSourceFileImports(sourceFile: ts.SourceFile, context: ts.TransformationContext, remapTarget: IRemapImportsTransformerOptions['remapTarget']): ts.SourceFile; //# sourceMappingURL=remap-imports-transformer.d.ts.map