import { NameVersion } from "@pslb/rollup-plugin-dll/src"; declare type Info = { name: string; version: string; module: string; }; export declare const relativePath: (from: Info, to: Info) => string; /** * Get the relative path between 2 pslb compatible npm packages. * In pslb - we store all our stuff in /module * @param from * @param to */ export declare const relativeModulePath: (from: NameVersion, to: NameVersion) => string; export {};