import type { NodeModulesLinksResult } from '@teambit/workspace.modules.node-modules-linker'; import type { LinkDetail } from '@teambit/dependency-resolver'; type ComponentListLinksProps = { componentListLinks?: NodeModulesLinksResult[]; verbose: boolean; compSummary?: boolean; }; export declare function ComponentListLinks({ componentListLinks, verbose, compSummary, }: ComponentListLinksProps): string; export declare function packageListLinks(packageList?: LinkDetail[]): string; export {};