import { default as ts } from 'typescript';
type Options = {
projectRoot: string;
filePath: string;
data: string;
compilerOptions: ts.CompilerOptions;
fileNames: string[];
};
export declare const pathReplacer: (options: Options) => string;
export {};