import { ILookupResult } from './fileLookup';
export declare type ITypescriptPaths = {
    [key: string]: Array<string>;
};
interface IPathsLookupProps {
    homeDir: string;
    baseURL: string;
    isDev?: boolean;
    cachePaths?: boolean;
    paths?: ITypescriptPaths;
    target: string;
}
export declare function pathsLookup(props: IPathsLookupProps): ILookupResult;
export {};
