import { Plugin } from 'rollup'; import { FileSystem } from '../fs/FileSystem'; interface Options { readonly fileSystem?: FileSystem; readonly forceFlat: boolean; } declare const remapImports: (options?: Options) => Plugin; export { Options, remapImports };