/**
 * Create a resolver factory
 *
 * @param tsconfig - The path to the tsconfig file
 * @returns The resolver factory
 */
export declare const createResolver: (rootPath?: string, tsconfig?: string, autoInstall?: boolean) => ((request: string) => Promise<string>);
