import { default as ts } from 'typescript';
import { Transformer } from '../types.js';
type Options = {
    configFilePath: string;
    compilerOptions: ts.CompilerOptions;
    filePathsToProcess: string[];
};
export declare const createImportResolverTransformer: (options: Options) => Transformer;
export {};
