import type * as ts from 'typescript'; declare type PathMapper = (specifier: string, parentPath: string) => string[] | null; export declare function createPathMapper(compilerOptions: ts.CompilerOptions): PathMapper; export {};