/** * Given a dependency and its version, builds a whole identifier for it * @param target Dependency name * @param version Dependency version * @returns A string containing the identifier */ export declare const DependencyId: (target: string, version: string) => string;