interface GlobalDep { name: string; location: string; } export declare function getGlobalDepPath(context: string): string; export declare function getGlobalDeps(context: string): { deps: GlobalDep[]; location: string; } | undefined; export {};