import { delegationExportStatement, importStatement, namedExportPathFull, namespaceExportStatement } from "../types"; /** * @description * If the module specifier: * * is a module name then it returns the module name * * points to a folder it returns the absolute path to the `index.d.ts` file of that folder * * points to a file it returns the absolute path to the `d.ts` file that the module specifier points to */ export declare function absolutePathFromImportExportPathFull(absolutePathToTsFileContainingStatement: string, exportOrImport: namespaceExportStatement | delegationExportStatement | namedExportPathFull | importStatement): string;