import { PackageJsonExportTarget, PackageJsonKind } from '../plugins/autolib.plugin.options.js'; export interface RetargetPackageJsonOptions { packageJsonKind: PackageJsonKind; packageJsonExportTarget: PackageJsonExportTarget; /** * @defaultValue 'dist' */ outDir?: string; /** * @defaultValue 'shims' */ shimDir?: string; /** * @defaultValue 'bin */ binDir?: string; } /** * This function should be able to turn a relative path from cwd pointing to * a source file, into a path that will point to a * different projection of the same file, like it's built equivalent or its * shim * */ export declare const retargetPackageJsonPath: (path: string, options: RetargetPackageJsonOptions) => string; //# sourceMappingURL=retarget-package-json-path.function.d.ts.map