import { ImportedConfiguration } from '../configuration/configuration'; interface MappedImport { name: string; comment: string; } interface FileContent { file: string; content: string; } export declare const getDynamicImports: (str: string) => MappedImport[]; export declare const cleanFileContent: (content: string) => string; export declare const remapImports: (data: FileContent[], root: string, targetDir: string, getRelativeName: (a: string, b: string) => string, imports: Record, testImport: NonNullable, chunkName?: ImportedConfiguration['chunkName']) => void; export declare function scanTop(root: string, start: string, target: string): Promise; export {};